Skip to content

Bump macOS intel build to macOS 13 #54

Bump macOS intel build to macOS 13

Bump macOS intel build to macOS 13 #54

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
linux_x86_64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup latest Alpine linux
uses: jirutka/[email protected]
- name: Prepare Alpine chroot
run: |
apk add git curl bash g++ musl-dev make perl
curl -sSf https://sh.rustup.rs | bash -s -- -y
shell: alpine.sh --root {0}
- name: Build in Alpine chroot
run: cargo build --release
shell: alpine.sh --root {0}
- name: Run tests
run: cargo test --release --verbose
shell: alpine.sh --root {0}
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: Mayara Linux x86_64
path: target/release/mayara
macos:
runs-on: macos-13
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:
runs-on: windows-latest
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 Windows x86_64
path: target/release/mayara.exe