Skip to content

Commit

Permalink
Fix linux-ia32, linux-arm-musl, and windows-arm64 releases (#2265)
Browse files Browse the repository at this point in the history
  • Loading branch information
ntkme committed Jun 17, 2024
1 parent 7aae1e6 commit 860eb5a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-linux-musl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
platform: linux/amd64
- arch: ia32
runner: ubuntu-latest
platform: linux/386
platform: linux/amd64
- arch: arm64
runner: linux-arm64
platform: linux/arm64
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Build
run: |
docker run --rm -i \
--platform ${{ matrix.arch == 'arm' && 'linux/amd64' || matrix.platform }} \
--platform ${{ matrix.platform }} \
--volume "$PWD:$PWD" \
--workdir "$PWD" \
ghcr.io/dart-musl/dart <<'EOF'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
platform: linux/amd64
- arch: ia32
runner: ubuntu-latest
platform: linux/386
platform: linux/amd64
- arch: arm64
runner: linux-arm64
platform: linux/arm64
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ jobs:
- arch: ia32
runner: windows-latest
- arch: arm64
runner: windows-arm64
# TODO: switch the following to windows-arm64, blocked by https://github.com/dart-lang/setup-dart/issues/118
runner: windows-latest # windows-arm64

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 860eb5a

Please sign in to comment.