Skip to content

Commit a6868c6

Browse files
committed
[DO NOT MERGE] Enable dist-x86_64-linux with tests on PR CI
a
1 parent 0691c06 commit a6868c6

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

.github/workflows/ci.yml

+4
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ jobs:
5959
- name: x86_64-gnu-llvm-15
6060
os: ubuntu-20.04-16core-64gb
6161
env: {}
62+
- name: dist-x86_64-linux
63+
env:
64+
PR_CI_JOB: 0
65+
os: ubuntu-20.04-16core-64gb
6266
- name: x86_64-gnu-tools
6367
os: ubuntu-20.04-16core-64gb
6468
env: {}

src/ci/github-actions/ci.yml

+6
Original file line numberDiff line numberDiff line change
@@ -333,6 +333,12 @@ jobs:
333333
- name: x86_64-gnu-llvm-15
334334
<<: *job-linux-16c
335335

336+
- &dist-x86_64-linux
337+
name: dist-x86_64-linux
338+
env:
339+
PR_CI_JOB: 0
340+
<<: *job-linux-16c
341+
336342
- name: x86_64-gnu-tools
337343
<<: *job-linux-16c
338344

src/ci/run.sh

+3-2
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,9 @@ source "$ci_dir/shared.sh"
4747

4848
export CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse
4949

50-
if ! isCI || isCiBranch auto || isCiBranch beta || isCiBranch try || isCiBranch try-perf || \
51-
isCiBranch automation/bors/try; then
50+
# if ! isCI || isCiBranch auto || isCiBranch beta || isCiBranch try || isCiBranch try-perf || \
51+
# isCiBranch automation/bors/try; then
52+
if true; then
5253
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set build.print-step-timings --enable-verbose-tests"
5354
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set build.metrics"
5455
HAS_METRICS=1

0 commit comments

Comments
 (0)