Skip to content

Commit

Permalink
wip: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
vobradovich committed Nov 6, 2024
1 parent 42c033d commit aa1aa71
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/net-build-client-gen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,25 +33,23 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup target add x86_64-unknown-linux-gnu
- run: cargo build -p sails-client-gen-dotnet --release --target x86_64-unknown-linux-gnu
- run: cargo build -p sails-client-gen-dotnet --release
- uses: actions/upload-artifact@v4
with:
name: linux-x64
path: ./target/x86_64-unknown-linux-gnu/release/libsails_client_gen_dotnet.so
path: ./target/release/libsails_client_gen_dotnet.so
retention-days: 1
overwrite: true

linux-arm64:
runs-on: ubuntu-latest
runs-on: ubuntu-arm
steps:
- uses: actions/checkout@v4
- run: rustup target add aarch64-unknown-linux-gnu
- run: cargo build -p sails-client-gen-dotnet --release --target aarch64-unknown-linux-gnu
- run: cargo build -p sails-client-gen-dotnet --release
- uses: actions/upload-artifact@v4
with:
name: linux-arm64
path: ./target/aarch64-unknown-linux-gnu/release/libsails_client_gen_dotnet.so
path: ./target/release/libsails_client_gen_dotnet.so
retention-days: 1
overwrite: true

Expand Down

0 comments on commit aa1aa71

Please sign in to comment.