Skip to content

Commit a54452a

Browse files
committed
Change CXX flags
1 parent 6ac3c31 commit a54452a

File tree

1 file changed

+2
-14
lines changed

1 file changed

+2
-14
lines changed

.github/workflows/premerge.yaml

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,6 @@ jobs:
3737
with:
3838
max-size: "2000M"
3939
- name: Build and Test
40-
# Mark the job as a success even if the step fails so that people do
41-
# not get notified while the new premerge pipeline is in an
42-
# experimental state.
43-
# TODO(boomanaiden154): Remove this once the pipeline is stable and we
44-
# are ready for people to start recieving notifications.
45-
continue-on-error: true
4640
run: |
4741
git config --global --add safe.directory '*'
4842
@@ -75,8 +69,8 @@ jobs:
7569
echo "Building runtimes: ${linux_runtimes}"
7670
echo "Running runtimes checks targets: ${linux_runtime_check_targets}"
7771
78-
export CC=/opt/llvm/bin/clang
79-
export CXX=/opt/llvm/bin/clang++
72+
export CC=clang
73+
export CXX=clang++
8074
8175
./.ci/monolithic-linux.sh "$(echo ${linux_projects} | tr ' ' ';')" "$(echo ${linux_check_targets})" "$(echo ${linux_runtimes} | tr ' ' ';')" "$(echo ${linux_runtime_check_targets})"
8276
@@ -124,12 +118,6 @@ jobs:
124118
echo "windows-projects=${windows_projects}" >> $GITHUB_OUTPUT
125119
echo "windows-check-targets=${windows_check_targets}" >> $GITHUB_OUTPUT
126120
- name: Build and Test
127-
# Mark the job as a success even if the step fails so that people do
128-
# not get notified while the new premerge pipeline is in an
129-
# experimental state.
130-
# TODO(boomanaiden154): Remove this once the pipeline is stable and we
131-
# are ready for people to start recieving notifications.
132-
continue-on-error: true
133121
if: ${{ steps.vars.outputs.windows-projects != '' }}
134122
shell: cmd
135123
run: |

0 commit comments

Comments
 (0)