Skip to content

Commit fabf6b4

Browse files
committed
try CI build using custom libcxx
1 parent f647dae commit fabf6b4

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/build-test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ jobs:
5252
if: ${{ matrix.operating-system == 'ubuntu-latest' }}
5353
run: |
5454
sudo apt update
55-
sudo apt install -y clang-19 lld-19
56-
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-19 100
57-
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-19 100
55+
sudo apt install -y clang-20 lld-20
56+
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-20 100
57+
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-20 100
5858
5959
- name: Build v8 ${{ matrix.v8-versions }}
6060
if: steps.v8-build-cache.outputs.cache-hit != 'true'
@@ -80,7 +80,7 @@ jobs:
8080
8181
# Setup GN
8282
# Warnings are no errors - @see https://issues.chromium.org/issues/42203398#comment9
83-
tools/dev/v8gen.py -vv $V8CONFIG -- is_component_build=true use_custom_libcxx=false treat_warnings_as_errors=false
83+
tools/dev/v8gen.py -vv $V8CONFIG -- is_component_build=true use_custom_libcxx=true treat_warnings_as_errors=false
8484
8585
# Build
8686
ninja -C out.gn/$V8CONFIG/
@@ -139,9 +139,9 @@ jobs:
139139
if: ${{ matrix.operating-system == 'ubuntu-latest' }}
140140
run: |
141141
sudo apt update
142-
sudo apt install -y clang-19 lld-19
143-
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-19 100
144-
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-19 100
142+
sudo apt install -y clang-20 lld-20
143+
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-20 100
144+
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-20 100
145145
146146
- name: Download cache v8 ${{ matrix.v8-versions }} build
147147
uses: actions/cache/restore@v4

0 commit comments

Comments
 (0)