Skip to content

Commit 511b6af

Browse files
committed
.
1 parent 8c7e08c commit 511b6af

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

.github/workflows/pr_push.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ jobs:
2424
uses: ./.github/workflows/reusable_fast.yml
2525
Build:
2626
name: Basic builds
27-
needs: [FastBuild]
27+
needs: [CodeChecks]
28+
# needs: [FastBuild]
2829
uses: ./.github/workflows/reusable_basic.yml
2930
DevDax:
3031
needs: [FastBuild]

.github/workflows/reusable_basic.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -138,13 +138,13 @@ jobs:
138138
with:
139139
fetch-depth: 0
140140

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
148148

149149
- name: Install TBB apt package
150150
if: matrix.install_tbb == 'ON'
@@ -163,6 +163,7 @@ jobs:
163163
164164
- name: Get UMF version
165165
run: |
166+
git config --global --add safe.directory $GITHUB_WORKSPACE
166167
VERSION=$(git describe --tags --abbrev=0 | grep -oP '\d+\.\d+\.\d+')
167168
echo "UMF_VERSION=$VERSION" >> $GITHUB_ENV
168169

0 commit comments

Comments
 (0)