-
Notifications
You must be signed in to change notification settings - Fork 0
94 lines (75 loc) · 2.41 KB
/
sanitizers.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
name: Sanitizers
on:
push:
pull_request:
release:
types: [published]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
linux-sanitizers:
name: linux-sanitizers
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: install-python-3
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: dependencies (debian-like)
run: |
sudo apt -y update
sudo apt -y install ninja-build clang-tidy doxygen plantuml
- name: install-python-deps
run: |
python3 -m pip install --upgrade pip
pip3 install conan
- name: cmake-configure
run: |
cmake --preset=ci-ninja-sanitizers
- name: build
run: |
cmake --build ./build
shell: bash
- name: ctest
run: |
ctest -V --test-dir build
shell: bash
windows-sanitizers:
name: windows-sanitizers
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
- name: install-python-3
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: install-python-deps
run: |
python3 -m pip install --upgrade pip
pip3 install conan
- name: dependencies (windows)
run: |
choco install -y --limit-output ninja
choco install -y --limit-output openssl --version="3.1.1"
- name: correct-tmp-dir (win)
run: |
echo "TEMP=$env:USERPROFILE\AppData\Local\Temp" >> $env:GITHUB_ENV
echo "TMP=$env:USERPROFILE\AppData\Local\Temp" >> $env:GITHUB_ENV
shell: pwsh
- name: cmake-configure
run: |
cmake --preset=ci-msvc-22-sanitizer
- name: build
run: |
cmake --build --preset=ci-msvc-debug-sanitizer
# Set the path variable so the necessary DLLs are found
shell: cmd
- name: run-msvc-sanitizer
working-directory: build-sanitizer
run: |
set PATH="%PATH%;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.40.33807\bin\Hostx64\x64;C:\Program Files\CMake\bin"
echo %PATH%
"C:\Program Files\CMake\bin\ctest.exe" -V -C Debug
shell: cmd