Skip to content
Snippets Groups Projects
Commit d834189f authored by ewbo4360's avatar ewbo4360 :sunflower:
Browse files

trying to patch the artifact publishing

parent 8416f1ff
No related branches found
No related tags found
No related merge requests found
Pipeline #74552 failed
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
# variables: # variables:
# $CI_BUILDS_DIR : /builds/ewbo4360/devops_wise24_ewbo/MPD # $CI_BUILDS_DIR : /builds/ewbo4360/devops_wise24_ewbo/MPD
before_script: before_script: #this is debatable to put it here, some packages seems useless for some jobs like test-job2, optimization in further version
# the 2 following steps make sure that the required building tool (meson) is installed on the runner # the 2 following steps make sure that the required building tool (meson) is installed on the runner
#and also that all the other external dependencies are here (this will be part of a container later) #and also that all the other external dependencies are here (this will be part of a container later)
- apt-get update # Make sure the package lists are updated - apt-get update # Make sure the package lists are updated
...@@ -89,6 +89,7 @@ ...@@ -89,6 +89,7 @@
cache: cache:
paths: paths:
- output/full #save cache for later jobs - output/full #save cache for later jobs
- ./artifacts
test-job1: test-job1:
stage: test stage: test
...@@ -103,6 +104,7 @@ ...@@ -103,6 +104,7 @@
cache: cache:
paths: paths:
- output/full #reuse the build cache :) - output/full #reuse the build cache :)
- ./artifacts
test-job2: test-job2:
stage: test stage: test
...@@ -118,6 +120,7 @@ ...@@ -118,6 +120,7 @@
cache: cache:
paths: paths:
- output/full #reuse the build cache :) - output/full #reuse the build cache :)
- ./artifacts
to-registry: to-registry:
stage: publish-artifacts stage: publish-artifacts
...@@ -142,6 +145,7 @@ ...@@ -142,6 +145,7 @@
cache: cache:
paths: paths:
- output/full #reuse the build cache :) - output/full #reuse the build cache :)
- ./artifacts
# artifacts: # artifacts:
# when: on_failure # when: on_failure
# access: all # access: all
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment