Skip to content

Commit

Permalink
Extend CI workflow to build Go and Rust
Browse files Browse the repository at this point in the history
  • Loading branch information
vikman90 committed Feb 22, 2024
1 parent 4da3f3e commit 97519e3
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,38 @@ jobs:
name: build-java
path: Java/queens.jar

build-go:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Build
run: go build -C Go
- name: Archive
run: tar -zcvf build-go.tar.gz Go/queens
- uses: actions/[email protected]
with:
name: build-go
path: build-go.tar.gz

build-rust:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Build
run: |
cd Rust
cargo build -r
- name: Archive
run: tar -zcvf build-rust.tar.gz Rust/target/release/queens
- uses: actions/[email protected]
with:
name: build-rust
path: build-rust.tar.gz

launch-cpp:

runs-on: ubuntu-latest
Expand Down

0 comments on commit 97519e3

Please sign in to comment.