File tree Expand file tree Collapse file tree 1 file changed +6
-32
lines changed Expand file tree Collapse file tree 1 file changed +6
-32
lines changed Original file line number Diff line number Diff line change 1616 BRANCH_NAME : ${{ github.head_ref || github.ref_name }}
1717
1818jobs :
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' }}
181151182152 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 : |
You can’t perform that action at this time.
0 commit comments