-
Notifications
You must be signed in to change notification settings - Fork 6
56 lines (56 loc) · 1.17 KB
/
heph.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: Heph
on:
push:
branches: [ main ]
paths:
- "src/**"
- "test/**"
- "examples/**"
- "Makefile"
- ".github/workflows/heph.yml"
pull_request:
branches: [ main ]
paths:
- "src/**"
- "test/**"
- "examples/**"
- "Makefile"
- ".github/workflows/heph.yml"
permissions:
contents: read
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: full
jobs:
Test:
runs-on: ubuntu-latest
timeout-minutes: 10
if: false # FIXME.
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/test
with:
working-directory: ./
Miri:
runs-on: ubuntu-latest
timeout-minutes: 10
if: false # FIXME.
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/test_miri
with:
working-directory: ./
Sanitiser:
runs-on: ubuntu-latest
timeout-minutes: 10
if: false # FIXME.
strategy:
fail-fast: false
matrix:
sanitiser: [address, leak, memory, thread]
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/test_sanitizer
with:
sanitizer: ${{ matrix.sanitiser }}
working-directory: ./