Skip to content

Commit

Permalink
Workflows adjusted for artifact upload.
Browse files Browse the repository at this point in the history
  • Loading branch information
EgeBalci committed Jun 19, 2024
1 parent 9bc4ab8 commit 7086a9c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ jobs:
run: cargo build --release --verbose
- name: Run tests
run: cargo test --verbose
- uses: actions/upload-artifact@v3
with:
name: deoptimizer-linux-x86_64
path: ./target/release/deoptimizer
retention-days: 5
build-windows:
runs-on: windows-latest
steps:
Expand All @@ -24,6 +29,11 @@ jobs:
run: cargo build --release --verbose
- name: Run tests
run: cargo test --verbose
- uses: actions/upload-artifact@v3
with:
name: deoptimizer-windows-x86_64
path: ./target/release/deoptimizer
retention-days: 5
build-macos-x86:
runs-on: macos-13
steps:
Expand All @@ -32,6 +42,11 @@ jobs:
run: cargo build --release --verbose
- name: Run tests
run: cargo test --verbose
- uses: actions/upload-artifact@v3
with:
name: deoptimizer-macos-x86_64
path: ./target/release/deoptimizer
retention-days: 5
build-macos-arm64:
runs-on: macos-14
steps:
Expand All @@ -40,3 +55,8 @@ jobs:
run: cargo build --release --verbose
- name: Run tests
run: cargo test --verbose
- uses: actions/upload-artifact@v3
with:
name: deoptimizer-macos-aarch64
path: ./target/release/deoptimizer
retention-days: 5

0 comments on commit 7086a9c

Please sign in to comment.