diff options
author | Javier Jardón <jjardon@gnome.org> | 2018-04-24 01:44:01 +0100 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2018-04-25 09:22:53 +0100 |
commit | b6a643138602e43f2c0fd218adfc7a77c79dd82d (patch) | |
tree | 4cd733d37e760d0660ac0dfa43e79b2452996830 | |
parent | 07ac1bfa580ee08e529d1ab7b3e529caf13c1f9c (diff) | |
download | buildstream-b6a643138602e43f2c0fd218adfc7a77c79dd82d.tar.gz |
Move curent before_script: commands to the only jobs where they are actually needed
-rw-r--r-- | .gitlab-ci.yml | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a7a462997..05848a4fd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,14 +10,6 @@ stages: - test - post -before_script: - # Diagnostics - - mount - - df -h - - - useradd -Um buildstream - - chown -R buildstream:buildstream . - ##################################################### # Prepare stage # ##################################################### @@ -95,6 +87,12 @@ analysis: variables: PYTEST_ADDOPTS: "--color=yes" script: + # Diagnostics + - mount + - df -h + + - useradd -Um buildstream + - chown -R buildstream:buildstream . - export INTEGRATION_CACHE="$(pwd)/cache/integration-cache" |