diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/vyos-rolling-nightly-build.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/vyos-rolling-nightly-build.yml b/.github/workflows/vyos-rolling-nightly-build.yml index 868e227..4a06db7 100644 --- a/.github/workflows/vyos-rolling-nightly-build.yml +++ b/.github/workflows/vyos-rolling-nightly-build.yml @@ -155,7 +155,7 @@ jobs: timeout: 15m command_timeout: 180m script: | - ${{ env.DOCKER_CALL_ON_KVM_HOST_WITH_IMAGE_PULL }} sudo make testraid | tee smoketest_raid.log + ${{ env.DOCKER_CALL_ON_KVM_HOST_WITH_IMAGE_PULL }} /bin/bash -c "sudo make testraid | tee smoketest_raid.log" - name: "Smoketest: system" if: ${{ !inputs.FAKE_BUILDING_PROCESS && !inputs.SKIP_SMOKETEST_SYSTEM }} @@ -169,7 +169,7 @@ jobs: timeout: 15m command_timeout: 180m script: | - ${{ env.DOCKER_CALL_ON_KVM_HOST }} sudo make test | tee smoketest_system.log + ${{ env.DOCKER_CALL_ON_KVM_HOST }} /bin/bash -c "sudo make test | tee smoketest_system.log" - name: "Smoketest: configuration" if: ${{ !inputs.FAKE_BUILDING_PROCESS && !inputs.SKIP_SMOKETEST_CONFIG }} @@ -183,7 +183,7 @@ jobs: timeout: 15m command_timeout: 180m script: | - ${{ env.DOCKER_CALL_ON_KVM_HOST }} sudo make testc | tee smoketest_configuration.log + ${{ env.DOCKER_CALL_ON_KVM_HOST }} /bin/bash -c "sudo make testc | tee smoketest_configuration.log" - name: "Smoketest: clear files" if: ${{ !inputs.FAKE_BUILDING_PROCESS && (!inputs.SKIP_SMOKETEST_RAID1 || !inputs.SKIP_SMOKETEST_SYSTEM || !inputs.SKIP_SMOKETEST_CONFIG) }} |
