]> git.ipfire.org Git - thirdparty/dracut-ng.git/commitdiff
ci: run make install for networking tests as well
authorJo Zzsi <jozzsicsataban@gmail.com>
Fri, 8 Nov 2024 14:01:09 +0000 (09:01 -0500)
committerLaszlo <laszlo.gombos@gmail.com>
Fri, 8 Nov 2024 14:38:11 +0000 (09:38 -0500)
.github/workflows/integration-extra.yml
.github/workflows/integration.yml
test/test-github.sh

index 7fb6a9f177b9d5476aa10408ae89c3d5739e02aa..a1a9c10ee4aeea6261d10204b8c276314df1488c 100644 (file)
@@ -56,4 +56,4 @@ jobs:
             -   name: "Checkout Repository"
                 uses: actions/checkout@v4
             -   name: "${{ matrix.container }} TEST-${{ matrix.test }}"
-                run: TARGETS='all install cleaninstall check' DRACUT=dracut ./test/test-github.sh "TEST-${{ matrix.test }}" ${{ matrix.test }}
+                run: ./test/test-github.sh "TEST-${{ matrix.test }}" ${{ matrix.test }}
index 4a68190c95c324bf7e508e632e7a89198aa1e158..ab796be3a4b8bcf6d2baad1d9390c257f0940287 100644 (file)
@@ -48,7 +48,7 @@ jobs:
             -   name: "Checkout Repository"
                 uses: actions/checkout@v4
             -   name: "${{ matrix.container }} TEST-${{ matrix.test }}"
-                run:  TARGETS='all install cleaninstall check' DRACUT=dracut ./test/test-github.sh "TEST-${{ matrix.test }}" ${{ matrix.test }}
+                run:  ./test/test-github.sh "TEST-${{ matrix.test }}" ${{ matrix.test }}
 
     # syncheck
     syncheck:
@@ -104,7 +104,7 @@ jobs:
             -   name: "Checkout Repository"
                 uses: actions/checkout@v4
             -   name: "${{ matrix.container }} TEST-${{ matrix.test }}"
-                run: TARGETS='all install cleaninstall check' DRACUT=dracut ./test/test-github.sh "TEST-${{ matrix.test }}" ${{ matrix.test }}
+                run: ./test/test-github.sh "TEST-${{ matrix.test }}" ${{ matrix.test }}
 
     extended-systemd:
         needs: basic
@@ -139,7 +139,7 @@ jobs:
             -   name: "Checkout Repository"
                 uses: actions/checkout@v4
             -   name: "${{ matrix.container }} TEST-${{ matrix.test }}"
-                run: TARGETS='all install cleaninstall check' DRACUT=dracut ./test/test-github.sh "TEST-${{ matrix.test }}" ${{ matrix.test }}
+                run: ./test/test-github.sh "TEST-${{ matrix.test }}" ${{ matrix.test }}
 
     dracut-cpio:
         needs: basic
index 1f37848cd18f0d918b1e4582ac8134a259450291..6261ce5675bb897621e5ea55bd4ace8509fa3a3b 100755 (executable)
@@ -7,6 +7,8 @@
 set -e
 if [ "$V" = "2" ]; then set -x; fi
 
+export DRACUT=dracut
+
 [[ -d ${0%/*} ]] && cd "${0%/*}"/../
 
 # disable building documentation by default
@@ -17,4 +19,4 @@ if [ "$V" = "2" ]; then set -x; fi
 
 # treat warnings as error
 # shellcheck disable=SC2086
-CFLAGS="-Wextra -Werror" make TEST_RUN_ID="${TEST_RUN_ID:=$1}" TESTS="${TESTS:=$2}" V="${V:=1}" ${TARGETS:=all check}
+CFLAGS="-Wextra -Werror" make TEST_RUN_ID="${TEST_RUN_ID:=$1}" TESTS="${TESTS:=$2}" V="${V:=1}" ${TARGETS:=all install cleaninstall check}