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

Fast tests only on macos latest #316

Merged
merged 2 commits into from
Aug 16, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 3 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,6 @@ jobs:
override: true
toolchain: stable

- name: Install Bitcoin from Homebrew
if: ${{ matrix.os == 'macos-latest' }}
run: brew install bitcoin

- name: Install from bitcoincore.org
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
Expand All @@ -53,11 +49,11 @@ jobs:
- name: Check Lockfile
run: cargo update --locked --package ord

- name: Test on MacOS
- name: Test on MacOS (unit tests)
if: ${{ matrix.os == 'macos-latest' }}
run: cargo test --all -- --test-threads=1
run: cargo test --bin ord

- name: Test on Linux
- name: Test on Linux (all tests)
if: ${{ matrix.os == 'ubuntu-latest' }}
run: cargo test --all

Expand Down