From 0157d18ff7027845506af2d4ddaac09d0161fb3c Mon Sep 17 00:00:00 2001 From: Kaio Duarte Date: Tue, 9 Feb 2021 10:16:13 +0000 Subject: [PATCH] chore: use a tier 1 target for Linux binary --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index f4889e4cb..c3f1946e0 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -96,12 +96,12 @@ jobs: run: | sudo chown -R 1000:1000 . docker run --rm -v "$(pwd)":/home/rust/src ekidd/rust-musl-builder:stable \ - cargo build --release + cargo build --target x86_64-unknown-linux-gnu --release sudo chown -R $(whoami):$(whoami) . - uses: actions/upload-artifact@v2 with: name: fnm-linux - path: target/x86_64-unknown-linux-musl/release/fnm + path: target/x86_64-unknown-linux-gnu/release/fnm build_static_arm_binary: name: "Build ARM binary"