Skip to content

Commit

Permalink
rm miri test from build action and add miri workflow instead
Browse files Browse the repository at this point in the history
  • Loading branch information
s5suzuki committed Jul 30, 2024
1 parent 9046883 commit ad41a90
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 13 deletions.
13 changes: 0 additions & 13 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,19 +88,6 @@ jobs:
python3 build.py test --features "use_meter left_handed"
shell: bash
miri:
name: test-with-miri
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-build
with:
os: ubuntu-latest
toolchain: nightly
components: miri
- run: |
python3 build.py test --miri
lint:
name: lint
runs-on: ubuntu-latest
Expand Down
21 changes: 21 additions & 0 deletions .github/workflows/miri.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: miri

on: [ workflow_dispatch ]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
miri:
name: test-with-miri
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-build
with:
os: ubuntu-latest
toolchain: nightly
components: miri
- run: |
python3 build.py test --miri

0 comments on commit ad41a90

Please sign in to comment.