aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/pull_request.yml
blob: ab1594db371014998ade46cc9527a7423b2c5bce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: pull_request
on: pull_request
jobs:
  ubuntu-20:
    timeout-minutes: 10
    runs-on: ubuntu-20.04
    steps:
      - uses: actions/checkout@v2
      - name: pre-push
        run: |
          sudo apt-get update
          sudo apt-get -y install libjson-c-dev libcmocka-dev clang valgrind \
                                  python3-pytest debianutils flake8 meson \
                                  ninja-build
          ./.github/workflows/pull_request.sh
  centos-7:
    timeout-minutes: 10
    runs-on: ubuntu-latest
    container: centos:7
    steps:
      - uses: actions/checkout@v2
      - name: pre-push
        run: |
          # NB: no working flake8
          yum -y install make gcc-4.8.5 epel-release pciutils
          yum -y install clang json-c-devel libcmocka-devel \
              valgrind python36-pytest which ninja-build meson
          ./.github/workflows/pull_request.sh
  fedora-35:
    timeout-minutes: 10
    runs-on: ubuntu-latest
    container: fedora
    steps:
      - uses: actions/checkout@v2
      - name: pre-push
        run: |
          dnf -y install --releasever=35 \
              gcc make clang json-c-devel libcmocka-devel pciutils diffutils \
              valgrind python3-pytest python3-flake8 which meson ninja-build
          ./.github/workflows/pull_request.sh