872e9581f7
Add a job using --enable-rust, to ensure that the toolchain is installed correctly by the Dockerfile and that QEMU builds with Rust enabled on at least one platform. Suggested-by: Daniel P. Berrangé <berrange@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Acked-by: Alex Bennée <alex.bennee@linaro.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
36 lines
726 B
YAML
36 lines
726 B
YAML
include:
|
|
- local: '/.gitlab-ci.d/container-core.yml'
|
|
- local: '/.gitlab-ci.d/container-cross.yml'
|
|
|
|
amd64-alpine-container:
|
|
extends: .container_job_template
|
|
variables:
|
|
NAME: alpine
|
|
|
|
amd64-debian-container:
|
|
extends: .container_job_template
|
|
stage: containers
|
|
variables:
|
|
NAME: debian
|
|
|
|
amd64-ubuntu2204-container:
|
|
extends: .container_job_template
|
|
variables:
|
|
NAME: ubuntu2204
|
|
|
|
amd64-opensuse-leap-container:
|
|
extends: .container_job_template
|
|
variables:
|
|
NAME: opensuse-leap
|
|
|
|
python-container:
|
|
extends: .container_job_template
|
|
variables:
|
|
NAME: python
|
|
|
|
amd64-fedora-rust-nightly-container:
|
|
extends: .container_job_template
|
|
variables:
|
|
NAME: fedora-rust-nightly
|
|
allow_failure: true
|