File tree 2 files changed +37
-37
lines changed
2 files changed +37
-37
lines changed Original file line number Diff line number Diff line change @@ -98,40 +98,40 @@ jobs:
98
98
cd build
99
99
ctest -L main --verbose --timeout 900
100
100
101
- ubuntu-latest-cmake-sanitizer :
102
- runs-on : ubuntu-latest
103
-
104
- continue-on-error : true
105
-
106
- strategy :
107
- matrix :
108
- sanitizer : [ADDRESS, THREAD, UNDEFINED]
109
- build_type : [Debug, Release]
110
-
111
- steps :
112
- - name : Clone
113
- id : checkout
114
- uses : actions/checkout@v3
115
-
116
- - name : Dependencies
117
- id : depends
118
- run : |
119
- sudo apt-get update
120
- sudo apt-get install build-essential
121
-
122
- - name : Build
123
- id : cmake_build
124
- run : |
125
- mkdir build
126
- cd build
127
- cmake .. -DLLAMA_FATAL_WARNINGS=ON -DLLAMA_SANITIZE_${{ matrix.sanitizer }}=ON -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
128
- cmake --build . --config ${{ matrix.build_type }} -j $(nproc)
129
-
130
- - name : Test
131
- id : cmake_test
132
- run : |
133
- cd build
134
- ctest -L main --verbose --timeout 900
101
+ # ubuntu-latest-cmake-sanitizer:
102
+ # runs-on: ubuntu-latest
103
+ #
104
+ # continue-on-error: true
105
+ #
106
+ # strategy:
107
+ # matrix:
108
+ # sanitizer: [ADDRESS, THREAD, UNDEFINED]
109
+ # build_type: [Debug, Release]
110
+ #
111
+ # steps:
112
+ # - name: Clone
113
+ # id: checkout
114
+ # uses: actions/checkout@v3
115
+ #
116
+ # - name: Dependencies
117
+ # id: depends
118
+ # run: |
119
+ # sudo apt-get update
120
+ # sudo apt-get install build-essential
121
+ #
122
+ # - name: Build
123
+ # id: cmake_build
124
+ # run: |
125
+ # mkdir build
126
+ # cd build
127
+ # cmake .. -DLLAMA_FATAL_WARNINGS=ON -DLLAMA_SANITIZE_${{ matrix.sanitizer }}=ON -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
128
+ # cmake --build . --config ${{ matrix.build_type }} -j $(nproc)
129
+ #
130
+ # - name: Test
131
+ # id: cmake_test
132
+ # run: |
133
+ # cd build
134
+ # ctest -L main --verbose --timeout 900
135
135
136
136
ubuntu-latest-cmake-mpi :
137
137
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -24,13 +24,13 @@ jobs:
24
24
25
25
strategy :
26
26
matrix :
27
- sanitizer : [ADDRESS, THREAD, UNDEFINED]
27
+ # TODO: temporary disabled due to linux kernel issues
28
+ # sanitizer: [ADDRESS, THREAD, UNDEFINED]
29
+ sanitizer : [UNDEFINED]
28
30
build_type : [Debug]
29
31
include :
30
32
- build_type : Release
31
33
sanitizer : " "
32
- - build_type : Debug
33
- sanitizer : THREAD
34
34
disabled_on_pr : true
35
35
fail-fast : false # While -DLLAMA_SANITIZE_THREAD=ON is broken
36
36
You can’t perform that action at this time.
0 commit comments