Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove macOS builds from CI #13

Merged
merged 1 commit into from Dec 13, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
45 changes: 0 additions & 45 deletions .github/workflows/mean_bean_ci.yml
Expand Up @@ -79,7 +79,6 @@ jobs:
with:
command: build
args: --all --all-features

strategy:
fail-fast: true
matrix:
Expand All @@ -88,47 +87,3 @@ jobs:
# Windows
- i686-pc-windows-msvc
- x86_64-pc-windows-msvc

macos:
name: macOS
runs-on: macos-latest
needs: lints
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 50
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.channel }}
target: ${{ matrix.target }}
override: true
- name: Cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --all
- name: Cargo test all-features
uses: actions-rs/cargo@v1
with:
command: test
args: --all --all-features
- name: Cargo build
uses: actions-rs/cargo@v1
with:
command: build
args: --all
- name: Cargo build all-features
uses: actions-rs/cargo@v1
with:
command: build
args: --all --all-features

strategy:
fail-fast: true
matrix:
channel: [stable, beta, nightly]
target:
# macOS
- x86_64-apple-darwin