New node to test #111
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
fetch-depth: 0 | |
- name: 'run_basic_tests.sh' | |
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/run_raidlevel_tests.sh" | |
- name: 'run_basic_tests.sh 2' | |
run: | | |
vagrant ssh -c "ls && cd host/mdadm && .github/tools/run_basic_tests_2.sh" | |
- name: 'run_basic_tests.sh 2' | |
run: | | |
vagrant ssh -c "ls && cd host/mdadm && .github/tools/run_ddf_tests.sh" | |
- name: 'run_basic_tests.sh 2' | |
run: | | |
vagrant ssh -c "ls && cd host/mdadm && .github/tools/run_imsm_test.sh" | |
- name: 'run_basic_tests.sh 2' | |
run: | | |
vagrant ssh -c "ls && cd host/mdadm && .github/tools/run_basic_tests.sh" | |
# - uses: actions/download-artifact@v4 | |
# with: | |
# name: /var/tmp/*.log |