Skip to content

Commit

Permalink
Skip MUSL for (Linux) ARM
Browse files Browse the repository at this point in the history
  • Loading branch information
bruceadams committed Nov 23, 2020
1 parent 71e8f76 commit 9ac8795
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: macos
- os: ubuntu-latest
x86_64: ./target/x86_64-unknown-linux-musl/release/yj
aarch64: ./target/aarch64-unknown-linux-musl/release/yj
aarch64: ./target/aarch64-unknown-linux-gnu/release/yj
name: linux
- os: windows-latest
x86_64: ./target/release/yj.exe
Expand All @@ -41,9 +41,9 @@ jobs:
run: |
sudo apt-get install musl-tools
rustup target add x86_64-unknown-linux-musl
rustup target add aarch64-unknown-linux-musl
rustup target add aarch64-unknown-linux-gnu
cargo build --release --target x86_64-unknown-linux-musl --verbose
cargo build --release --target aarch64-unknown-linux-musl --verbose
cargo build --release --target aarch64-unknown-linux-gnu --verbose
- name: macOS Build
if: runner.os == 'macOS'
run: |
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yj"
version = "1.1.29"
version = "1.1.30"
authors = ["Bruce Adams <[email protected]>"]
categories = ["command-line-utilities"]
description = "Command line tool that converts YAML to JSON"
Expand Down

0 comments on commit 9ac8795

Please sign in to comment.