-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add workflow to build and publish windows images separate from the li…
…nux images (#288) * add workflow to build and publish windows images separate from the linux images * update image-matrix changed files list * fix version match in ci/release/update-versions.sh * don't build linux images if windows action changes * add ucxx to raft-dask dependencies * Fix rustup-init sha256sum check (devcontainers/features#962)
- Loading branch information
Showing
9 changed files
with
68 additions
and
40 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
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,43 @@ | ||
name: Release Windows | ||
|
||
concurrency: | ||
group: release-windows-on-${{ github.event_name }}-from-${{ github.ref_name }} | ||
cancel-in-progress: true | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
|
||
image-matrix: | ||
name: Determine image matrix | ||
runs-on: ubuntu-latest | ||
outputs: | ||
windows: ${{ steps.matrix.outputs.windows }} | ||
steps: | ||
- name: Checkout ${{ github.repository }} | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
persist-credentials: false | ||
|
||
- id: matrix | ||
name: Determine image matrix | ||
uses: ./.github/actions/image-matrix | ||
with: | ||
full_matrix: 'true' | ||
|
||
build-and-push-windows-images: | ||
name: ${{ matrix.name }} | ||
needs: image-matrix | ||
secrets: inherit | ||
uses: ./.github/workflows/build-test-and-push-windows-image.yml | ||
strategy: | ||
fail-fast: false | ||
matrix: ${{ fromJSON(needs.image-matrix.outputs.windows) }} | ||
with: | ||
push: 'true' | ||
os: "${{ matrix.os }}" | ||
features: "${{ toJSON(matrix.features) }}" | ||
container_env: "${{ toJSON(matrix.env) }}" | ||
repo: "${{ vars.DOCKERHUB_REPOSITORY || github.repository }}" |
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
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
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