diff options
| author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2024-10-05 00:20:41 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-05 00:20:41 +0200 |
| commit | 78b591d52ac05bdea98e86974411f22c55f43796 (patch) | |
| tree | 2db08dfdb7ea170802ab98603436ee85082e4395 | |
| parent | 91fa55f97162092060f602758a55c87088073e1f (diff) | |
| parent | 2558e488f35334d75f662cb94dc2122f68c7740a (diff) | |
| download | monitoring-plugins-78b591d.tar.gz | |
Merge pull request #2023 from sni/make_rawhide_tests_optional
add new github test workflow for debian:testing and fedora:rawhide
| -rw-r--r-- | .github/workflows/test-next.yml | 78 | ||||
| -rw-r--r-- | .github/workflows/test.yml | 1 |
2 files changed, 78 insertions, 1 deletions
diff --git a/.github/workflows/test-next.yml b/.github/workflows/test-next.yml new file mode 100644 index 00000000..81240759 --- /dev/null +++ b/.github/workflows/test-next.yml | |||
| @@ -0,0 +1,78 @@ | |||
| 1 | --- | ||
| 2 | name: Tests Debian:Testing and Fedora:Rawhide | ||
| 3 | |||
| 4 | on: | ||
| 5 | workflow_dispatch: {} | ||
| 6 | push: | ||
| 7 | branches-ignore: | ||
| 8 | - '*' | ||
| 9 | schedule: | ||
| 10 | # Run every week on Monday at 9:00 AM (UTC) | ||
| 11 | - cron: '0 9 * * 1' | ||
| 12 | |||
| 13 | jobs: | ||
| 14 | full-test: | ||
| 15 | name: Running unit and integrationt tests | ||
| 16 | runs-on: ubuntu-latest | ||
| 17 | strategy: | ||
| 18 | fail-fast: false | ||
| 19 | matrix: | ||
| 20 | distro: | ||
| 21 | - 'debian:testing' | ||
| 22 | include: | ||
| 23 | - distro: 'debian:testing' | ||
| 24 | prepare: .github/prepare_debian.sh | ||
| 25 | steps: | ||
| 26 | - name: Git clone repository | ||
| 27 | uses: actions/checkout@v4 | ||
| 28 | - name: Run the tests on ${{ matrix.distro }} | ||
| 29 | run: | | ||
| 30 | docker volume create --driver local --opt type=tmpfs --opt device=tmpfs --opt o=size=100m,uid=1000 tmp-vol | ||
| 31 | docker run \ | ||
| 32 | -e NPTEST_ACCEPTDEFAULT=1 \ | ||
| 33 | -e NPTEST_CACHE="/src/.github/NPTest.cache" \ | ||
| 34 | -w /src -v ${PWD}:/src \ | ||
| 35 | --tmpfs /media/ramdisk1 \ | ||
| 36 | -v /var/run/utmp:/var/run/utmp \ | ||
| 37 | --mount source=tmp-vol,destination=/src,target=/media/ramdisk2 \ | ||
| 38 | ${{ matrix.distro }} \ | ||
| 39 | /bin/sh -c '${{ matrix.prepare }} && \ | ||
| 40 | tools/setup && \ | ||
| 41 | ./configure --enable-libtap --with-ipv6=no && \ | ||
| 42 | make && \ | ||
| 43 | make test && \ | ||
| 44 | make dist && \ | ||
| 45 | tar zxf monitoring-plugins-*.tar.gz && \ | ||
| 46 | cd monitoring-plugins-*/ && \ | ||
| 47 | ./configure && \ | ||
| 48 | make' | ||
| 49 | docker container prune -f | ||
| 50 | docker volume prune -f | ||
| 51 | |||
| 52 | build-test: | ||
| 53 | name: Running rpm build test on ${{ matrix.distro }} | ||
| 54 | runs-on: ubuntu-latest | ||
| 55 | strategy: | ||
| 56 | fail-fast: false | ||
| 57 | matrix: | ||
| 58 | include: | ||
| 59 | - {"distro": "fedora:rawhide", "build": ".github/mock.sh"} | ||
| 60 | steps: | ||
| 61 | - name: Git clone repository | ||
| 62 | uses: actions/checkout@v4 | ||
| 63 | - name: Run the tests on ${{ matrix.distro }} | ||
| 64 | run: | | ||
| 65 | docker volume create --driver local --opt type=tmpfs --opt device=tmpfs --opt o=size=100m,uid=1000 tmp-vol | ||
| 66 | docker run \ | ||
| 67 | --privileged=true \ | ||
| 68 | -e NPTEST_ACCEPTDEFAULT=1 \ | ||
| 69 | -e NPTEST_CACHE="/src/.github/NPTest.cache" \ | ||
| 70 | -w /src -v ${PWD}:/src \ | ||
| 71 | --tmpfs /media/ramdisk1 \ | ||
| 72 | -v /var/run/utmp:/var/run/utmp \ | ||
| 73 | --mount source=tmp-vol,destination=/src,target=/media/ramdisk2 \ | ||
| 74 | ${{ matrix.distro }} \ | ||
| 75 | /bin/sh -c '${{ matrix.build }} && \ | ||
| 76 | ls -la' | ||
| 77 | docker container prune -f | ||
| 78 | docker volume prune -f | ||
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 33220d6d..77ca6585 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml | |||
| @@ -54,7 +54,6 @@ jobs: | |||
| 54 | matrix: | 54 | matrix: |
| 55 | include: | 55 | include: |
| 56 | - {"distro": "fedora:latest", "build": ".github/mock.sh"} | 56 | - {"distro": "fedora:latest", "build": ".github/mock.sh"} |
| 57 | - {"distro": "fedora:rawhide", "build": ".github/mock.sh"} | ||
| 58 | - {"distro": "rockylinux:8", "build": ".github/mock.sh"} | 57 | - {"distro": "rockylinux:8", "build": ".github/mock.sh"} |
| 59 | - {"distro": "almalinux:9", "build": ".github/mock.sh"} | 58 | - {"distro": "almalinux:9", "build": ".github/mock.sh"} |
| 60 | # - {"distro": "oraclelinux:9", "build": ".github/mock.sh"} | 59 | # - {"distro": "oraclelinux:9", "build": ".github/mock.sh"} |
