File tree 2 files changed +10
-8
lines changed
2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 24
24
uses : ./.github/workflows/reusable_fast.yml
25
25
Build :
26
26
name : Basic builds
27
- needs : [FastBuild]
27
+ needs : [CodeChecks]
28
+ # needs: [FastBuild]
28
29
uses : ./.github/workflows/reusable_basic.yml
29
30
DevDax :
30
31
needs : [FastBuild]
Original file line number Diff line number Diff line change @@ -138,13 +138,13 @@ jobs:
138
138
with :
139
139
fetch-depth : 0
140
140
141
- - name : Install cmake (non-default version)
142
- if : matrix.cmake_ver != 'default'
143
- run : |
144
- sudo apt-get remove --purge -y cmake
145
- wget https://github.com/Kitware/CMake/releases/download/v${{matrix.cmake_ver}}/cmake-${{matrix.cmake_ver}}-Linux-x86_64.sh
146
- chmod +x cmake-${{matrix.cmake_ver}}-Linux-x86_64.sh
147
- sudo ./cmake-${{matrix.cmake_ver}}-Linux-x86_64.sh --skip-license --prefix=/usr/local
141
+ # - name: Install cmake (non-default version)
142
+ # if: matrix.cmake_ver != 'default'
143
+ # run: |
144
+ # sudo apt-get remove --purge -y cmake
145
+ # wget https://github.com/Kitware/CMake/releases/download/v${{matrix.cmake_ver}}/cmake-${{matrix.cmake_ver}}-Linux-x86_64.sh
146
+ # chmod +x cmake-${{matrix.cmake_ver}}-Linux-x86_64.sh
147
+ # sudo ./cmake-${{matrix.cmake_ver}}-Linux-x86_64.sh --skip-license --prefix=/usr/local
148
148
149
149
- name : Install TBB apt package
150
150
if : matrix.install_tbb == 'ON'
@@ -163,6 +163,7 @@ jobs:
163
163
164
164
- name : Get UMF version
165
165
run : |
166
+ git config --global --add safe.directory $GITHUB_WORKSPACE
166
167
VERSION=$(git describe --tags --abbrev=0 | grep -oP '\d+\.\d+\.\d+')
167
168
echo "UMF_VERSION=$VERSION" >> $GITHUB_ENV
168
169
You can’t perform that action at this time.
0 commit comments