mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-21 11:31:08 +03:00
43b43d9749
* first pass compilation of croaring update * cargo.lock * add roaring arch flag into CI build scripts * revert CI to use windows 2019 image * add more debug * more debug info * update range arguments to bitmap remove_range function calls * remove unnecessary cast
35 lines
No EOL
835 B
YAML
35 lines
No EOL
835 B
YAML
name: Continuous Integration
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
linux-tests:
|
|
name: Linux Tests
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
job_args: [servers, chain, core, keychain, pool, p2p, src, api, util, store]
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Test ${{ matrix.job_args }}
|
|
working-directory: ${{ matrix.job_args }}
|
|
run: cargo test --release
|
|
|
|
macos-tests:
|
|
name: macOS Tests
|
|
runs-on: macos-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: Tests
|
|
run: cargo test --release --all
|
|
|
|
windows-tests:
|
|
name: Windows Tests
|
|
runs-on: windows-2019
|
|
env:
|
|
ROARING_ARCH: x86-64-v2
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: Tests
|
|
run: cargo test --release --all |