Skip to content

Commit

Permalink
add ubuntu target
Browse files Browse the repository at this point in the history
  • Loading branch information
jcaromiq committed Jun 3, 2024
1 parent 63f641e commit adeb9ab
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,16 @@ env:
CARGO_TERM_COLOR: always

jobs:
build:

test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Run tests
run: cargo test --verbose
- name: Build linux
run: cargo build --verbose --target x86_64-unknown-linux-musl
- name: Build windows
run: cargo build --verbose --target x86_64-pc-windows-gnu
- name: Build mac
run: cargo build --verbose --target x86_64-apple-darwin

build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: rustup target add x86_64-unknown-linux-musl
- run: cargo build --verbose --target x86_64-unknown-linux-musl

0 comments on commit adeb9ab

Please sign in to comment.