network/.github/workflows/integration.yml
Wen Liang 77020c28fa Fix CentOS 7 integration tests
The newest ubuntu upgrade (ubuntu-22.04) in the github actions runner
image causes the CentOS 7 integration tests broken, to fix it, specify
the ubuntu-20.04 runner image for the CentOS 7 integration tests.

Signed-off-by: Wen Liang <liangwen12year@gmail.com>
2023-02-13 17:47:55 +01:00

25 lines
429 B
YAML

name: integration
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- main
jobs:
integration:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
include:
- os: "c7"
- os: "c8s"
- os: "c9s"
steps:
- uses: actions/checkout@v2
- name: Run tests
run: sudo .github/run_test.sh --os ${{ matrix.os }}