-
Notifications
You must be signed in to change notification settings - Fork 7
45 lines (45 loc) · 1.08 KB
/
http.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
name: Heph-HTTP
on:
push:
branches: [ main ]
paths:
- "http/**"
- ".github/workflows/http.yml"
pull_request:
branches: [ main ]
paths:
- "http/**"
- ".github/workflows/http.yml"
permissions:
contents: read
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: full
jobs:
Test:
runs-on: ubuntu-24.04
timeout-minutes: 10
# TODO: enable <https://github.com/Thomasdezeeuw/heph/issues/647>.
if: false
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/test
with:
working-directory: http
Sanitiser:
runs-on: ubuntu-24.04
timeout-minutes: 10
# TODO: enable <https://github.com/Thomasdezeeuw/heph/issues/647>.
if: false
strategy:
fail-fast: false
matrix:
# LeakSanitizer is broken, see
# <https://github.com/rust-lang/rust/issues/111073>.
sanitiser: [address, memory, thread] # leak
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/test_sanitizer
with:
sanitizer: ${{ matrix.sanitiser }}
working-directory: http