Skip to content

Commit fb34c23

Browse files
authored
Update build.yml
1 parent 1994eba commit fb34c23

File tree

1 file changed

+6
-32
lines changed

1 file changed

+6
-32
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -16,36 +16,6 @@ env:
1616
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
1717

1818
jobs:
19-
# ubuntu-latest-cmake-sanitizer:
20-
# runs-on: ubuntu-latest
21-
#
22-
# continue-on-error: true
23-
#
24-
# strategy:
25-
# matrix:
26-
# sanitizer: [ADDRESS, THREAD, UNDEFINED]
27-
# build_type: [Debug, Release]
28-
#
29-
# steps:
30-
# - name: Clone
31-
# id: checkout
32-
# uses: actions/checkout@v3
33-
# with:
34-
# submodules: 'recursive'
35-
#
36-
# - name: Dependencies
37-
# id: depends
38-
# run: |
39-
# sudo apt-get update
40-
# sudo apt-get install build-essential
41-
#
42-
# - name: Build
43-
# id: cmake_build
44-
# run: |
45-
# mkdir build
46-
# cd build
47-
# cmake .. -DGGML_SANITIZE_${{ matrix.sanitizer }}=ON -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
48-
# cmake --build . --config ${{ matrix.build_type }}
4919

5020
ubuntu-latest-cmake:
5121
runs-on: ubuntu-latest
@@ -176,16 +146,20 @@ jobs:
176146
submodules: 'recursive'
177147

178148
- name: Install cuda-toolkit
179-
id: cuda-toolkit
149+
id: cuda_toolkit
180150
if: ${{ matrix.build == 'cuda12' }}
181151
uses: Jimver/[email protected]
182152
with:
183153
cuda: '12.2.0'
154+
155+
- name: Peek cuda-toolkit info
156+
id: peek_cuda_toolkit
157+
if: ${{ matrix.build == 'cuda12' }}
184158
run: |
185159
echo "Installed cuda version is: ${{steps.cuda-toolkit.outputs.cuda}}"
186160
echo "Cuda install location: ${{steps.cuda-toolkit.outputs.CUDA_PATH}}"
187161
nvcc -V
188-
162+
189163
- name: Build
190164
id: cmake_build
191165
run: |

0 commit comments

Comments
 (0)