-
Notifications
You must be signed in to change notification settings - Fork 16
39 lines (32 loc) · 767 Bytes
/
Copy pathctgrind.yml
File metadata and controls
39 lines (32 loc) · 767 Bytes
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
name: ctgrind
on:
push:
pull_request:
schedule:
- cron: "0 18 * * *"
env:
CARGO_TERM_COLOR: always
VALGRIND_BUG_494162: 1
jobs:
build:
strategy:
matrix:
include:
- os: ubuntu-latest
build: ""
- os: ubuntu-latest
build: --release
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: true
persist-credentials: false
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- name: Install valgrind
run: sudo apt-get update && sudo apt-get install -y valgrind
- name: ctgrind tests
run: admin/ctgrind ${{ matrix.build }}