Skip to content

Commit 9ac8795

Browse files
committed
Skip MUSL for (Linux) ARM
1 parent 71e8f76 commit 9ac8795

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
name: macos
2222
- os: ubuntu-latest
2323
x86_64: ./target/x86_64-unknown-linux-musl/release/yj
24-
aarch64: ./target/aarch64-unknown-linux-musl/release/yj
24+
aarch64: ./target/aarch64-unknown-linux-gnu/release/yj
2525
name: linux
2626
- os: windows-latest
2727
x86_64: ./target/release/yj.exe
@@ -41,9 +41,9 @@ jobs:
4141
run: |
4242
sudo apt-get install musl-tools
4343
rustup target add x86_64-unknown-linux-musl
44-
rustup target add aarch64-unknown-linux-musl
44+
rustup target add aarch64-unknown-linux-gnu
4545
cargo build --release --target x86_64-unknown-linux-musl --verbose
46-
cargo build --release --target aarch64-unknown-linux-musl --verbose
46+
cargo build --release --target aarch64-unknown-linux-gnu --verbose
4747
- name: macOS Build
4848
if: runner.os == 'macOS'
4949
run: |

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yj"
3-
version = "1.1.29"
3+
version = "1.1.30"
44
authors = ["Bruce Adams <bruce.adams@acm.org>"]
55
categories = ["command-line-utilities"]
66
description = "Command line tool that converts YAML to JSON"

0 commit comments

Comments
 (0)