Skip to content

Use Ubuntu 24.04 for CI #62

Use Ubuntu 24.04 for CI

Use Ubuntu 24.04 for CI #62

Workflow file for this run

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-24.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/test
with:
working-directory: ./
Miri:
runs-on: ubuntu-24.04
timeout-minutes: 10
# TODO: enable <https://github.com/Thomasdezeeuw/heph/issues/644>.
if: false
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/test_miri
with:
working-directory: ./
Sanitiser:
runs-on: ubuntu-24.04
timeout-minutes: 10
# TODO: enable <https://github.com/Thomasdezeeuw/heph/issues/645>.
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: ./