File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3636 # # https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
3737 runs-on : ubuntu-24.04
3838 strategy :
39- fail-fast : false
39+ # fail-fast: false
40+ fail-fast : true
4041 matrix :
4142 include :
4243 - image : fedora:41
@@ -194,10 +195,10 @@ jobs:
194195 # # When `source`d the script should exit in less than a second because it should not perform actual work.
195196 # # If it was running longer that would mean that it can no longer be `source`d without actually running.
196197 - name : Run Bash to test 'source'ing the script
197- run : sudo -u user -- timeout 5 bash -c "set -x && source usr/share/usability-misc/dist-installer-cli-standalone"
198+ run : sudo -u user -- timeout --kill-after=5 5 bash -c "set -x && source usr/share/usability-misc/dist-installer-cli-standalone"
198199
199200 - name : Run Installer ShellCheck
200201 run : shellcheck usr/share/usability-misc/dist-installer-cli-standalone
201202
202203 - name : Run build-dist-installer-cli
203- run : usr/share/usability-misc/build-dist-installer-cli
204+ run : sudo -u user -- timeout --kill-after=5 5 bash -c " usr/share/usability-misc/build-dist-installer-cli"
You can’t perform that action at this time.
0 commit comments