-
Notifications
You must be signed in to change notification settings - Fork 242
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gha: unify all windows artifacts builds into one workflow
This helps circumvent multiple complications. One, windows-e2e workflow does not need to wait for 2 workflows to finish (which is hard for a workflow_run triggered workflow). Two, we do not need to worry about matching the right artifacts from builder workflows with the right workflow_run that needs them (formerly used commit sha to do this). Third, the organization of workflows becomes logical: builder that prepares artifacts, and tester that consumes them and runs tests.
- Loading branch information
Showing
4 changed files
with
103 additions
and
113 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,99 @@ | ||
name: Build Windows artifacts | ||
on: | ||
push: | ||
branches: | ||
- "main" | ||
pull_request: {} | ||
|
||
env: | ||
IMAGE_NAME_E2E: crc-e2e | ||
IMAGE_NAME_INTEGRATION: crc-integration | ||
|
||
jobs: | ||
build-installer: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: | ||
- windows-2022 | ||
go: | ||
- '1.20' | ||
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@v3 | ||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: ${{ matrix.go }} | ||
- name: Set path for heat.exe and light.exe | ||
run: echo "$WIX\\bin" >>$GITHUB_PATH | ||
shell: bash | ||
- name: Build Windows installer | ||
run: make out/windows-amd64/crc-windows-installer.zip | ||
- name: Upload windows installer artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: Windows Installer (${{ matrix.os }}) | ||
path: "./out/windows-amd64/crc-windows-installer.zip" | ||
|
||
build-e2e: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
|
||
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Build and archive e2e image | ||
# use github.sha as ID to correlate various workflows triggered by the same event | ||
run: | | ||
CRC_E2E_IMG_VERSION=gh make containerized_e2e | ||
podman save -o ${{ env.IMAGE_NAME_E2E }}.tar quay.io/crcont/${{ env.IMAGE_NAME_E2E}}:gh | ||
- name: Upload e2e image | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: ${{ env.IMAGE_NAME_E2E }}-gh | ||
path: ${{ env.IMAGE_NAME_E2E }}.tar | ||
|
||
build-integration: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
|
||
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Build and archive integration image | ||
# use github.sha as ID to correlate various workflows triggered by the same event | ||
run: | | ||
CRC_INTEGRATION_IMG_VERSION=gh make containerized_integration | ||
podman save -o ${{ env.IMAGE_NAME_INTEGRATION }}.tar quay.io/crcont/${{ env.IMAGE_NAME_INTEGRATION }}:gh | ||
- name: Upload integration image | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: ${{ env.IMAGE_NAME_INTEGRATION }}-gh | ||
path: ${{ env.IMAGE_NAME_INTEGRATION }}.tar | ||
|
||
save-gh-context: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
|
||
steps: | ||
|
||
- name: Save the GH context in an artifact | ||
shell: bash | ||
env: | ||
GH_CONTEXT: ${{ toJSON(github) }} | ||
run: echo $GH_CONTEXT > gh_context.json | ||
|
||
- name: Upload the GH context artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: gh_context | ||
path: ./gh_context.json |
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 was deleted.
Oops, something went wrong.