Skip to content

Commit

Permalink
Extend CI workflow for Rust
Browse files Browse the repository at this point in the history
  • Loading branch information
vikman90 committed Feb 23, 2024
1 parent 988451f commit 543b881
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,3 +143,18 @@ jobs:
run: tar -zxvf build-go.tar.gz
- name: Launch
run: ./launch.py $STEP $STOP $TIMEOUT $ATTEMPTS Go/queens

launch-rust:

runs-on: ubuntu-latest
needs: build-rust

steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: build-rust
- name: Unarchive
run: tar -zxvf build-rust.tar.gz
- name: Launch
run: ./launch.py $STEP $STOP $TIMEOUT $ATTEMPTS Rust/target/release/queens

0 comments on commit 543b881

Please sign in to comment.