-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Loic Devulder <[email protected]>
- Loading branch information
Showing
2 changed files
with
28 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -239,7 +239,31 @@ jobs: | |
uses: actions/setup-go@v3 | ||
with: | ||
go-version-file: tests/go.mod | ||
- name: Cache ISO | ||
# !! DEBUG !! | ||
# - name: Cache ISO | ||
# # NOTE: download the *default* ISO, not the one passed as a parameter | ||
# if: inputs.iso_to_test == '' | ||
# uses: actions/cache@v3 | ||
# env: | ||
# cache-name: cache-artifacts | ||
# with: | ||
# path: build/* | ||
# key: build-ci-${{ github.event.pull_request.head.sha || github.sha }} | ||
# # Alternate key, mainly useful for UI test | ||
# restore-keys: | | ||
# build-ci- | ||
- name: Wait for build | ||
uses: fountainhead/[email protected] | ||
id: wait-for-build | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
checkName: build-all-artifacts | ||
ref: ${{ github.event.pull_request.head.sha || github.sha }} | ||
timeoutSeconds: 1800 | ||
- name: Stop the workflow if build has failed | ||
if: steps.wait-for-build.outputs.conclusion == 'failure' | ||
run: exit 1 | ||
- name: Restore cache artifacts | ||
# NOTE: download the *default* ISO, not the one passed as a parameter | ||
if: inputs.iso_to_test == '' | ||
uses: actions/cache@v3 | ||
|
@@ -251,6 +275,7 @@ jobs: | |
# Alternate key, mainly useful for UI test | ||
restore-keys: | | ||
build-ci- | ||
# !! DEBUG !! | ||
- name: Download specified ISO | ||
if: inputs.iso_to_test != '' | ||
env: | ||
|