Skip to content

Commit

Permalink
Remove platforms failing to build aws-lc-rs
Browse files Browse the repository at this point in the history
  • Loading branch information
stephank committed Apr 11, 2024
1 parent 30223fe commit 7045d88
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ jobs:
# See: https://github.com/briansmith/ring/blob/main/mk/cargo.sh
target:
- aarch64-musl
- armv7-musleabihf
- i686-musl
- x86_64-musl
runs-on: ubuntu-latest
container: "ghcr.io/rust-cross/rust-musl-cross:${{ matrix.target }}"
Expand Down Expand Up @@ -206,7 +204,7 @@ jobs:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: arm,arm64
platforms: arm64

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand All @@ -219,10 +217,8 @@ jobs:
run: |
# Map Docker arch to package name
declare -A build_targets
build_targets['386']='i686'
build_targets['amd64']='x86_64'
build_targets['arm64/v8']='aarch64'
build_targets['arm/v7']='armv7'
declare -a scratch_tags
for docker_arch in "${!build_targets[@]}"; do
Expand Down

0 comments on commit 7045d88

Please sign in to comment.