File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 12
12
# well on Windows or Mac. You can convert this to a matrix build if you need
13
13
# cross-platform coverage.
14
14
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
15
- # runs-on: ubuntu-22.04 Uncommented due to https://github.com/actions/runner-images/issues/8659#issuecomment-1823087636
16
- runs-on : ubuntu-20.04
15
+ runs-on : ubuntu-22.04
17
16
18
17
steps :
19
18
37
36
# Note the current convention is to use the -S and -B options here to specify source
38
37
# and build directories, but this is only available with CMake 3.13 and higher.
39
38
# The CMake binaries on the Github Actions machines are (as of this writing) 3.12
40
- run : cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DENABLE_OPENMP=on -DENABLE_PYTHON=off -DENABLE_TBB=off
39
+ # Force libc++ due to https://github.com/actions/runner-images/issues/8659
40
+ run : cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DENABLE_OPENMP=on -DENABLE_PYTHON=off -DENABLE_TBB=off -DCMAKE_CXX_FLAGS="-stdlib=libc++"
41
41
42
42
- name : Build
43
43
working-directory : ${{github.workspace}}/build
You can’t perform that action at this time.
0 commit comments