Skip to content

Commit

Permalink
CI platforms extended
Browse files Browse the repository at this point in the history
  • Loading branch information
keesverruijt committed Aug 19, 2024
1 parent 17fe684 commit 2984ec2
Showing 1 changed file with 31 additions and 3 deletions.
34 changes: 31 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ env:
CARGO_TERM_COLOR: always

jobs:
unix:
runs-on: [ubuntu-latest, macos-12]
linux_x86_64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
Expand All @@ -21,7 +21,35 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: Mayara UNIX
name: Mayara Linux x86_64
path: target/release/mayara

macos:
runs-on: macos-12
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --release
- name: Run tests
run: cargo test --release --verbose
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: Mayara macOS Intel
path: target/release/mayara

macos_arm64:
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --release
- name: Run tests
run: cargo test --release --verbose
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: Mayara macOS Apple Silicon
path: target/release/mayara

windows:
Expand Down

0 comments on commit 2984ec2

Please sign in to comment.