Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
al8n committed Dec 28, 2024
1 parent 4c52dd7 commit 30f3eeb
Showing 1 changed file with 52 additions and 52 deletions.
104 changes: 52 additions & 52 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -309,58 +309,58 @@ jobs:
run: |
bash ci/miri_tb_bounded.sh ${{ matrix.target }} ${{ matrix.cfg }}
miri-tb-unbounded:
name: miri-tb-unbounded-${{ matrix.target }}-${{ matrix.cfg }}
strategy:
matrix:
os:
- ubuntu-latest
# - macos-latest
target:
- x86_64-unknown-linux-gnu
- i686-unknown-linux-gnu
- powerpc64-unknown-linux-gnu
- x86_64-apple-darwin
- aarch64-apple-darwin
cfg:
- generic_insert
- generic_iters
- generic_get
- generic_constructor
- dynamic_insert
- dynamic_iters
- dynamic_get
- dynamic_constructor
# Exclude invalid combinations
exclude:
- os: ubuntu-latest
target: x86_64-apple-darwin
- os: ubuntu-latest
target: aarch64-apple-darwin
# - os: macos-latest
# target: x86_64-unknown-linux-gnu
# - os: macos-latest
# target: i686-unknown-linux-gnu
# - os: macos-latest
# target: powerpc64-unknown-linux-gnu
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Cache cargo build and registry
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-miri-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-miri-
- name: Install cargo-hack
run: cargo install cargo-hack
- name: Miri
run: |
bash ci/miri_tb_unbounded.sh ${{ matrix.target }} ${{ matrix.cfg }}
# miri-tb-unbounded:
# name: miri-tb-unbounded-${{ matrix.target }}-${{ matrix.cfg }}
# strategy:
# matrix:
# os:
# - ubuntu-latest
# # - macos-latest
# target:
# - x86_64-unknown-linux-gnu
# - i686-unknown-linux-gnu
# - powerpc64-unknown-linux-gnu
# - x86_64-apple-darwin
# - aarch64-apple-darwin
# cfg:
# - generic_insert
# - generic_iters
# - generic_get
# - generic_constructor
# - dynamic_insert
# - dynamic_iters
# - dynamic_get
# - dynamic_constructor
# # Exclude invalid combinations
# exclude:
# - os: ubuntu-latest
# target: x86_64-apple-darwin
# - os: ubuntu-latest
# target: aarch64-apple-darwin
# # - os: macos-latest
# # target: x86_64-unknown-linux-gnu
# # - os: macos-latest
# # target: i686-unknown-linux-gnu
# # - os: macos-latest
# # target: powerpc64-unknown-linux-gnu
# runs-on: ${{ matrix.os }}
# steps:
# - uses: actions/checkout@v4
# - name: Cache cargo build and registry
# uses: actions/cache@v4
# with:
# path: |
# ~/.cargo/registry
# ~/.cargo/git
# target
# key: ${{ runner.os }}-miri-${{ hashFiles('**/Cargo.lock') }}
# restore-keys: |
# ${{ runner.os }}-miri-
# - name: Install cargo-hack
# run: cargo install cargo-hack
# - name: Miri
# run: |
# bash ci/miri_tb_unbounded.sh ${{ matrix.target }} ${{ matrix.cfg }}

# valgrind
valgrind:
Expand Down

0 comments on commit 30f3eeb

Please sign in to comment.