CI: cleanup Linux jobs
2 unresolved threads
2 unresolved threads
The parent of all Linux jobs is now unified to enable easier
extensibility later on.
Update documentation.
Signed-off-by: Davide Gardenal davide.gardenal@huawei.com
Merge request reports
Activity
Filter activity
added 7 commits
-
b854f772...e196cd07 - 6 commits from branch
eclipse/oniro-core:kirkstone
- 3bfba58e - CI: cleanup Linux jobs
-
b854f772...e196cd07 - 6 commits from branch
added 5 commits
-
3bfba58e...85c0c66b - 4 commits from branch
eclipse/oniro-core:kirkstone
- 9201b824 - CI: cleanup Linux jobs
-
3bfba58e...85c0c66b - 4 commits from branch
added 6 commits
-
934e36e9...9429b899 - 5 commits from branch
eclipse/oniro-core:kirkstone
- 0d401ec8 - CI: cleanup Linux jobs
-
934e36e9...9429b899 - 5 commits from branch
added 5 commits
-
0d401ec8...ea9ea45d - 4 commits from branch
eclipse/oniro-core:kirkstone
- 28949236 - CI: cleanup Linux jobs
-
0d401ec8...ea9ea45d - 4 commits from branch
added 5 commits
-
28949236...06f8baf6 - 4 commits from branch
eclipse/oniro-core:kirkstone
- fc53deae - CI: cleanup Linux jobs
-
28949236...06f8baf6 - 4 commits from branch
added 5 commits
-
fc53deae...4c8f0d27 - 4 commits from branch
eclipse/oniro-core:kirkstone
- cea8d5aa - CI: cleanup Linux jobs
-
fc53deae...4c8f0d27 - 4 commits from branch
assigned to @zyga
- Automatically resolved by Davide Gardenal
added 1 commit
- eb130b27 - .oniro-ci: add new Linux hidden job definition
added 1 commit
- 5746c87e - .oniro-ci: add new Linux hidden job definition
mentioned in issue #148
added 4 commits
-
5746c87e...34d7f9b9 - 3 commits from branch
eclipse/oniro-core:kirkstone
- c3039b94 - .oniro-ci: add new Linux hidden job definition
-
5746c87e...34d7f9b9 - 3 commits from branch
added 16 commits
-
c3039b94...09676d01 - 15 commits from branch
eclipse/oniro-core:kirkstone
- 6f9c3b5d - .oniro-ci: add new Linux hidden job definition
-
c3039b94...09676d01 - 15 commits from branch
- Resolved by Marta Rybczynska
added 8 commits
-
6f9c3b5d...0490659f - 7 commits from branch
eclipse/oniro-core:kirkstone
- dc6c8ae3 - .oniro-ci: add new Linux hidden job definition
-
6f9c3b5d...0490659f - 7 commits from branch
@zyga could you have a look please?
276 277 # build and boot. 277 278 - find "$BITBAKE_DEPLOY_DIR"/images/ -name *.wic -exec rm -rf {} \; 278 279 - cp -a "$BITBAKE_DEPLOY_DIR"/licenses/ "$CI_PROJECT_DIR"/artifacts || true 279 # Only copy the files defined in the CI_ONIRO_JOB_ARTIFACTS variable. Most 280 # If CI_ONIRO_STORE_IMAGE_ARTIFACT is 1 copy the files defined in the CI_ONIRO_JOB_ARTIFACTS variable. Most 280 281 # of the remaining files are redundant and quite large. 282 - if test "$CI_ONIRO_STORE_IMAGE_ARTIFACT" != "1"; then (echo "CI_ONIRO_STORE_IMAGE_ARTIFACT is not set, artifacts will not be saved!") fi I would re-phrase this and alter the shell style a little.
282 - if test "$CI_ONIRO_STORE_IMAGE_ARTIFACT" != "1"; then (echo "CI_ONIRO_STORE_IMAGE_ARTIFACT is not set, artifacts will not be saved!") fi 282 - if [ "${CI_ONIRO_STORE_IMAGE_ARTIFACT:-}" != "1" ]; then echo "NOTE: Set CI_ONIRO_STORE_IMAGE_ARTIFACT=1 to archive built images, this is expensive, use only when the images are really consumed"; fi
302 304 variables: 303 305 CI_ONIRO_BB_LOCAL_CONF_plus_equals_INHERIT: create-spdx 304 306 CI_ONIRO_JOB_ARTIFACTS: "*.wic.* *.bmap" 307 CI_ONIRO_STORE_IMAGE_ARTIFACT: 1 @zyga any ETA for that?
Please register or sign in to reply