From: Benjamin Drung Date: Fri, 23 Jan 2026 16:38:36 +0000 (+0100) Subject: ci: wrap long run lines X-Git-Tag: 110~129 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=07eee75f784bee0d1012dd9d26b20faf9ec00cd7;p=thirdparty%2Fdracut-ng.git ci: wrap long run lines Wrap the long run lines to make yamllint happy. --- diff --git a/.github/workflows/daily-busybox-x64.yml b/.github/workflows/daily-busybox-x64.yml index 247c6e34f..18254f538 100644 --- a/.github/workflows/daily-busybox-x64.yml +++ b/.github/workflows/daily-busybox-x64.yml @@ -45,4 +45,6 @@ jobs: - name: "Checkout Repository" uses: actions/checkout@v6 - name: "TEST-${{ matrix.config.test }}" - run: TEST_CONTAINER_COMMAND="apk add ${{ matrix.config.deps }}" ./test/test-container.sh "TEST-${{ matrix.config.test }}" ${{ matrix.config.test }} + run: > + TEST_CONTAINER_COMMAND="apk add ${{ matrix.config.deps }}" + ./test/test-container.sh "TEST-${{ matrix.config.test }}" ${{ matrix.config.test }} diff --git a/.github/workflows/daily-hostonlystrict.yml b/.github/workflows/daily-hostonlystrict.yml index 9d15f5538..2dbd9d3ec 100644 --- a/.github/workflows/daily-hostonlystrict.yml +++ b/.github/workflows/daily-hostonlystrict.yml @@ -51,4 +51,6 @@ jobs: - name: "Checkout Repository" uses: actions/checkout@v6 - name: "${{ matrix.container }} TEST-${{ matrix.test }}" - run: TEST_DRACUT_ARGS="--hostonly-mode strict" ./test/test-container.sh "TEST-${{ matrix.test }}" ${{ matrix.test }} + run: > + TEST_DRACUT_ARGS="--hostonly-mode strict" + ./test/test-container.sh "TEST-${{ matrix.test }}" ${{ matrix.test }} diff --git a/.github/workflows/daily-mkosi-x64.yml b/.github/workflows/daily-mkosi-x64.yml index ce87ee767..1d4a6044d 100644 --- a/.github/workflows/daily-mkosi-x64.yml +++ b/.github/workflows/daily-mkosi-x64.yml @@ -36,4 +36,6 @@ jobs: - name: "Checkout Repository" uses: actions/checkout@v6 - name: "TEST-${{ matrix.config.test }}" - run: TEST_CONTAINER_COMMAND="zypper --non-interactive install ${{ matrix.config.deps }}" ./test/test-container.sh "TEST-${{ matrix.config.test }}" ${{ matrix.config.test }} + run: > + TEST_CONTAINER_COMMAND="zypper --non-interactive install ${{ matrix.config.deps }}" + ./test/test-container.sh "TEST-${{ matrix.config.test }}" ${{ matrix.config.test }} diff --git a/.github/workflows/daily-network-legacy.yml b/.github/workflows/daily-network-legacy.yml index 52d1fc3e4..522b0901b 100644 --- a/.github/workflows/daily-network-legacy.yml +++ b/.github/workflows/daily-network-legacy.yml @@ -44,4 +44,6 @@ jobs: - name: "Checkout Repository" uses: actions/checkout@v6 - name: "${{ matrix.container }} TEST-${{ matrix.test }}" - run: USE_NETWORK=${{ matrix.network }} CONFIGURE_ARG='--enable-network-legacy' ./test/test-container.sh "TEST-${{ matrix.test }}" ${{ matrix.test }} + run: > + USE_NETWORK=${{ matrix.network }} CONFIGURE_ARG='--enable-network-legacy' + ./test/test-container.sh "TEST-${{ matrix.test }}" ${{ matrix.test }} diff --git a/.github/workflows/daily-omitsystemd.yml b/.github/workflows/daily-omitsystemd.yml index bd60d5885..577a0e0f2 100644 --- a/.github/workflows/daily-omitsystemd.yml +++ b/.github/workflows/daily-omitsystemd.yml @@ -44,4 +44,6 @@ jobs: - name: "Checkout Repository" uses: actions/checkout@v6 - name: "${{ matrix.container }} TEST-${{ matrix.test }}" - run: TEST_DRACUT_ARGS="--omit systemd" ./test/test-container.sh "TEST-${{ matrix.test }}" ${{ matrix.test }} + run: > + TEST_DRACUT_ARGS="--omit systemd" + ./test/test-container.sh "TEST-${{ matrix.test }}" ${{ matrix.test }} diff --git a/.github/workflows/daily-systemd-networkd.yml b/.github/workflows/daily-systemd-networkd.yml index a40386932..5a236aafb 100644 --- a/.github/workflows/daily-systemd-networkd.yml +++ b/.github/workflows/daily-systemd-networkd.yml @@ -47,4 +47,6 @@ jobs: - name: "Checkout Repository" uses: actions/checkout@v6 - name: "${{ matrix.container }} TEST-${{ matrix.test }}" - run: USE_NETWORK=${{ matrix.network }} ./test/test-container.sh "TEST-${{ matrix.test }}" ${{ matrix.test }} + run: > + USE_NETWORK=${{ matrix.network }} + ./test/test-container.sh "TEST-${{ matrix.test }}" ${{ matrix.test }} diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 653f9a17a..251e437da 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -197,7 +197,9 @@ jobs: - name: "Checkout Repository" uses: actions/checkout@v6 - name: "${{ matrix.container }} TEST-${{ matrix.test }}" - run: USE_NETWORK=${{ matrix.network }} ./test/test-container.sh "TEST-${{ matrix.test }}" ${{ matrix.test }} + run: > + USE_NETWORK=${{ matrix.network }} + ./test/test-container.sh "TEST-${{ matrix.test }}" ${{ matrix.test }} network-iscsi: needs: basic name: ${{ matrix.test }} on ${{ matrix.container }} @@ -226,7 +228,9 @@ jobs: - name: "Checkout Repository" uses: actions/checkout@v6 - name: "${{ matrix.container }} TEST-${{ matrix.test }}" - run: USE_NETWORK=${{ matrix.network }} ./test/test-container.sh "TEST-${{ matrix.test }}" ${{ matrix.test }} + run: > + USE_NETWORK=${{ matrix.network }} + ./test/test-container.sh "TEST-${{ matrix.test }}" ${{ matrix.test }} network-nbd: needs: basic name: ${{ matrix.test }} on ${{ matrix.container }} @@ -253,7 +257,9 @@ jobs: - name: "Checkout Repository" uses: actions/checkout@v6 - name: "${{ matrix.container }} TEST-${{ matrix.test }}" - run: USE_NETWORK=${{ matrix.network }} ./test/test-container.sh "TEST-${{ matrix.test }}" ${{ matrix.test }} + run: > + USE_NETWORK=${{ matrix.network }} + ./test/test-container.sh "TEST-${{ matrix.test }}" ${{ matrix.test }} arm64: needs: basic name: ${{ matrix.test }} on ${{ matrix.container }} on arm64