forked from md-raid-utilities/mdadm
-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (63 loc) · 2.35 KB
/
review.yml
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
52
53
54
55
56
57
58
59
60
61
62
63
name: review
on: [pull_request]
env:
cflags: -Werror
jobs:
make:
# when gcc is not found, it may be needed to update runner version
runs-on: ubuntu-24.04
name: Compilation test with gcc
strategy:
matrix:
# gcc-versions are used to test up to 5 years old
gcc-version: [9, 10, 11, 12, 13, 14]
steps:
- uses: actions/checkout@v4
- name: 'Add ubuntu repository and install dependencies'
run: .github/tools/install_ubuntu_packages.sh ${{ matrix.gcc-version }}
- name: 'Check if gcc was installed correctly'
run: gcc-${{ matrix.gcc-version }} --version
- name: 'Make with DEBUG flag'
run: V=1 make -j$(nproc) -B CC=gcc-${{ matrix.gcc-version }} CXFLAGS=-DEBUG && make clean
- name: 'Make with DEBIAN flag'
run: V=1 make -j$(nproc) -B CC=gcc-${{ matrix.gcc-version }} CXFLAGS=-DEBIAN && make clean
- name: 'Make with USE_PTHREADS flag'
run: V=1 make -j$(nproc) -B CC=gcc-${{ matrix.gcc-version }} CXFLAGS=-USE_PTHREADS && make clean
- name: 'Make with DNO_LIBUDEV flag'
run: V=1 make -j$(nproc) -B CC=gcc-${{ matrix.gcc-version }} CXFLAGS=-DNO_LIBUDEV && make clean
- name: 'Make'
run: V=1 make -j$(nproc) CC=gcc-${{ matrix.gcc-version }}
- name: hardening-check mdadm
run: hardening-check mdadm
- name: hardening-check mdmon
run: hardening-check mdmon
checkpatch:
runs-on: ubuntu-latest
name: checkpatch review
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- name: 'Move prepared .checkpatch.conf file to main directory'
run: mv .github/tools/.checkpatch.conf .
- name: Run checkpatch review
uses: webispy/checkpatch-action@v9
upstream_tests:
runs-on: self-hosted
#timeout-minutes: 120
name: upstream tests
steps:
- uses: actions/checkout@v4
- name: 'Run on VM'
run: |
vagrant snapshot restore clean_vm_v1
echo "FYI vagrant restore command finished with exit code: $?"
sleep 2
vagrant status
vagrant up
sleep 2
vagrant ssh -c "ls && cd host/mdadm && .github/tools/runtests.sh"
# - uses: actions/download-artifact@v4
# with:
# name: /var/tmp/*.log