Skip to content

Commit

Permalink
4
Browse files Browse the repository at this point in the history
  • Loading branch information
kurtbuilds committed Nov 19, 2023
1 parent c35595b commit 71e48fd
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ jobs:
os: ubuntu-latest
native: false
target_rustflags: '--codegen linker=aarch64-linux-gnu-gcc'
env:
TARGET_CC=x86_64-linux-musl-gcc
- target: armv7-unknown-linux-musleabihf
os: ubuntu-latest
native: false
Expand Down Expand Up @@ -66,6 +64,7 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install gcc-aarch64-linux-gnu
echo "TARGET_CC=aarch64-linux-gnu-gcc" >> "$GITHUB_ENV"
- name: Install ARM7 Toolchain
if: ${{ matrix.target == 'armv7-unknown-linux-musleabihf' }}
run: |
Expand All @@ -79,7 +78,9 @@ jobs:
echo "CC_x86_64_unknown_linux_musl=x86_64-linux-musl-gcc" >> "$GITHUB_ENV"
- name: Test
if: matrix.native
run: cargo test --all --target ${{ matrix.target }}
run: |
env
cargo test --all --target ${{ matrix.target }}
- name: Package
id: package
Expand Down

0 comments on commit 71e48fd

Please sign in to comment.