From 9ac8795228691f34e21200a1d6ee072fe65d522e Mon Sep 17 00:00:00 2001 From: Bruce Adams Date: Sun, 22 Nov 2020 20:16:13 -0500 Subject: [PATCH] Skip MUSL for (Linux) ARM --- .github/workflows/release.yml | 6 +++--- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c1d30c2..a532905 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 @@ -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: | diff --git a/Cargo.lock b/Cargo.lock index e6a0fbb..1bd3e6c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -442,7 +442,7 @@ dependencies = [ [[package]] name = "yj" -version = "1.1.29" +version = "1.1.30" dependencies = [ "clap", "exitfailure", diff --git a/Cargo.toml b/Cargo.toml index c352ebe..d31010c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yj" -version = "1.1.29" +version = "1.1.30" authors = ["Bruce Adams "] categories = ["command-line-utilities"] description = "Command line tool that converts YAML to JSON"