Skip to content

Update to log's stable KV feature #56

Update to log's stable KV feature

Update to log's stable KV feature #56

Workflow file for this run

name: Heph-rt
on:
push:
branches: [ main ]
paths:
- "rt/**"
- ".github/workflows/rt.yml"
pull_request:
branches: [ main ]
paths:
- "rt/**"
- ".github/workflows/rt.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@v3
- uses: ./.github/workflows/test
with:
working-directory: rt
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@v3
- uses: ./.github/workflows/test_sanitizer
with:
sanitizer: ${{ matrix.sanitiser }}
working-directory: rt