forked from microsoft/MLAS
-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (51 loc) · 1.32 KB
/
linux_ci.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
name: Linux_CI
on:
push:
branches:
- main
- rel-*
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
Linux_x64_gcc_ubuntu24_release:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- run: |
set -e -x
rm -rf build
cmake --workflow --preset linux_gcc_release_workflow
Linux_x64_gcc_ubuntu22_release:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- run: |
set -e -x
rm -rf build
cmake --workflow --preset linux_gcc_release_workflow
Linux_x64_gcc_ubuntu24_debug:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- run: |
set -e -x
rm -rf build
cmake --workflow --preset linux_gcc_debug_workflow
Linux_x64_clang_ubuntu24_debug:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- run: |
set -e -x
rm -rf build
cmake --workflow --preset linux_clang_debug_workflow
Linux_x64_gcc_ubuntu24_debug_asan:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- run: |
set -e -x
rm -rf build
cmake --workflow --preset linux_gcc_debug_asan_workflow