Skip to content

Commit 2dbe7d8

Browse files
Fix invalid enabling of gcc backend in run.sh
1 parent a141b69 commit 2dbe7d8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: src/ci/github-actions/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -331,9 +331,9 @@ jobs:
331331
<<: *job-linux-4c
332332

333333
- name: x86_64-gnu-llvm-15
334-
<<: *job-linux-16c
335334
env:
336335
ENABLE_GCC_CODEGEN: "1"
336+
<<: *job-linux-16c
337337

338338
- name: x86_64-gnu-tools
339339
<<: *job-linux-16c

Diff for: src/ci/run.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -128,10 +128,10 @@ else
128128

129129
if [[ "${ENABLE_GCC_CODEGEN}" == "1" ]]; then
130130
# Test the Cranelift backend in CI. Bootstrap knows which targets to run tests on.
131-
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.codegen-backends=llvm,cranelift"
131+
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.codegen-backends=llvm,cranelift,gcc"
132132
else
133133
# Test the Cranelift and GCC backends in CI. Bootstrap knows which targets to run tests on.
134-
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.codegen-backends=llvm,cranelift,gcc"
134+
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.codegen-backends=llvm,cranelift"
135135
fi
136136

137137
# We enable this for non-dist builders, since those aren't trying to produce

0 commit comments

Comments
 (0)