.gitlab-ci.yml (48202c712412c803ddb56365c7bca322aa4e7506) .gitlab-ci.yml (b22786eab0f070a1981201ecbd952bafc371c615)
1# Currently we have two build stages after our containers are built:
2# - build (for traditional build and test or first stage build)
3# - test (for test stages, using build artefacts from a build stage)
4stages:
5 - containers
6 - containers-layer2
7 - build
8 - test

--- 58 unchanged lines hidden (view full) ---

67 - if [ -d ${CI_PROJECT_DIR}/avocado-cache ]; then
68 du -chs ${CI_PROJECT_DIR}/avocado-cache ;
69 fi
70 - export AVOCADO_ALLOW_UNTRUSTED_CODE=1
71 after_script:
72 - cd build
73 - du -chs ${CI_PROJECT_DIR}/avocado-cache
74
1# Currently we have two build stages after our containers are built:
2# - build (for traditional build and test or first stage build)
3# - test (for test stages, using build artefacts from a build stage)
4stages:
5 - containers
6 - containers-layer2
7 - build
8 - test

--- 58 unchanged lines hidden (view full) ---

67 - if [ -d ${CI_PROJECT_DIR}/avocado-cache ]; then
68 du -chs ${CI_PROJECT_DIR}/avocado-cache ;
69 fi
70 - export AVOCADO_ALLOW_UNTRUSTED_CODE=1
71 after_script:
72 - cd build
73 - du -chs ${CI_PROJECT_DIR}/avocado-cache
74
75build-system-alpine:
76 <<: *native_build_job_definition
77 variables:
78 IMAGE: alpine
79 TARGETS: aarch64-softmmu alpha-softmmu cris-softmmu hppa-softmmu
80 moxie-softmmu microblazeel-softmmu mips64el-softmmu
81 MAKE_CHECK_ARGS: check-build
82 CONFIGURE_ARGS: --enable-docs
83 artifacts:
84 expire_in: 2 days
85 paths:
86 - .git-submodule-status
87 - build
88
89check-system-alpine:
90 <<: *native_test_job_definition
91 needs:
92 - job: build-system-alpine
93 artifacts: true
94 variables:
95 IMAGE: alpine
96 MAKE_CHECK_ARGS: check
97
98acceptance-system-alpine:
99 <<: *native_test_job_definition
100 needs:
101 - job: build-system-alpine
102 artifacts: true
103 variables:
104 IMAGE: alpine
105 MAKE_CHECK_ARGS: check-acceptance
106 <<: *acceptance_definition
107
75build-system-ubuntu:
76 <<: *native_build_job_definition
77 variables:
78 IMAGE: ubuntu2004
79 TARGETS: aarch64-softmmu alpha-softmmu cris-softmmu hppa-softmmu
80 moxie-softmmu microblazeel-softmmu mips64el-softmmu
81 MAKE_CHECK_ARGS: check-build
82 artifacts:

--- 547 unchanged lines hidden ---
108build-system-ubuntu:
109 <<: *native_build_job_definition
110 variables:
111 IMAGE: ubuntu2004
112 TARGETS: aarch64-softmmu alpha-softmmu cris-softmmu hppa-softmmu
113 moxie-softmmu microblazeel-softmmu mips64el-softmmu
114 MAKE_CHECK_ARGS: check-build
115 artifacts:

--- 547 unchanged lines hidden ---