File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 37
37
projects : clang
38
38
# There is an issue running on "windows-2019".
39
39
# See https://github.com/llvm/llvm-project/issues/76601#issuecomment-1873049082.
40
- os_list : ' ["ubuntu-latest "]'
40
+ os_list : ' ["ubuntu-22.04 "]'
41
41
python_version : ${{ matrix.python-version }}
Original file line number Diff line number Diff line change 39
39
type : string
40
40
# Use windows-2019 due to:
41
41
# https://developercommunity.visualstudio.com/t/Prev-Issue---with-__assume-isnan-/1597317
42
- default : ' ["ubuntu-latest", "windows-2019", "macOS-13"]'
42
+ # Use ubuntu-22.04 rather than ubuntu-latest to match the ubuntu
43
+ # version in the CI container. Without this, setup-python tries
44
+ # to install a python version linked against a newer version of glibc.
45
+ # TODO(boomanaiden154): Bump the Ubuntu version once the version in the
46
+ # container is bumped.
47
+ default : ' ["ubuntu-22.04", "windows-2019", "macOS-13"]'
43
48
44
49
python_version :
45
50
required : false
@@ -113,7 +118,8 @@ jobs:
113
118
run : |
114
119
if [ "${{ runner.os }}" == "Linux" ]; then
115
120
builddir="/mnt/build/"
116
- mkdir -p $builddir
121
+ sudo mkdir -p $builddir
122
+ sudo chown gha $builddir
117
123
extra_cmake_args="-DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang"
118
124
else
119
125
builddir="$(pwd)"/build
You can’t perform that action at this time.
0 commit comments