diff options
| author | Jakub Beránek <berykubik@gmail.com> | 2025-06-16 10:28:55 +0200 |
|---|---|---|
| committer | Jakub Beránek <berykubik@gmail.com> | 2025-06-16 10:28:55 +0200 |
| commit | 743c2a4c71f5514ad93d4ccf77d3fdf9f33ac94d (patch) | |
| tree | 75cceb898726cffc5190c84a8be9720313adccc7 /src/ci/github-actions | |
| parent | e314b97ee54091b6bcf33db4770c93d82fded8bc (diff) | |
| download | rust-743c2a4c71f5514ad93d4ccf77d3fdf9f33ac94d.tar.gz rust-743c2a4c71f5514ad93d4ccf77d3fdf9f33ac94d.zip | |
Fix `-nopt` CI jobs
They were using `--config` instead of `--set`, which overrides too much stuff.
Diffstat (limited to 'src/ci/github-actions')
| -rw-r--r-- | src/ci/github-actions/jobs.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ci/github-actions/jobs.yml b/src/ci/github-actions/jobs.yml index d6d9e0fb773..217cf764afb 100644 --- a/src/ci/github-actions/jobs.yml +++ b/src/ci/github-actions/jobs.yml @@ -300,7 +300,7 @@ auto: env: IMAGE: i686-gnu-nopt DOCKER_SCRIPT: >- - python3 ../x.py test --stage 1 --config /config/nopt-std-config.toml library/std && + python3 ../x.py test --stage 1 --set rust.optimize=false library/std && /scripts/stage_2_test_set2.sh <<: *job-linux-4c |
