aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/pull_request.yml
blob: 804c82250f385837f2cea0087960175a88efad91 (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
41
42
43
44
45
46
47
48
49
50
51
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
          make pre-push VERBOSE=1
  ubuntu-18:
    timeout-minutes: 10
    runs-on: ubuntu-18.04
    steps:
      - uses: actions/checkout@v2
      - name: pre-push
        run: |
          # NB: no working flake8
          sudo apt update
          sudo apt-get -y install libjson-c-dev libcmocka-dev clang valgrind \
                                  python3-pytest debianutils
          make pre-push VERBOSE=1
  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 cmake json-c-devel libcmocka-devel \
              openssl-devel valgrind python36-pytest which
          make pre-push VERBOSE=1
  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 cmake json-c-devel libcmocka-devel openssl-devel \
              pciutils diffutils valgrind python3-pytest python3-flake8 which
          make pre-push VERBOSE=1