Browse Source

Chore - Use a tier 1 target for Linux binary (#389)

remotes/origin/add-with-shims
Kaio Duarte 4 years ago committed by GitHub
parent
commit
d60780d6de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      .github/workflows/rust.yml

4
.github/workflows/rust.yml

@ -96,12 +96,12 @@ jobs: @@ -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"

Loading…
Cancel
Save