diff options
author | Jürg Billeter <j@bitron.ch> | 2019-08-14 06:41:18 +0200 |
---|---|---|
committer | Jürg Billeter <j@bitron.ch> | 2019-08-20 07:41:23 +0200 |
commit | 9fe643e341ed7beecb4072d84e0bbf9432e54902 (patch) | |
tree | 6eb49e18bfcf81487b03fd0a57614e397c97387b /.gitlab-ci.yml | |
parent | 275d3f62c56de8a8ae3fc8156a70c656bd28052d (diff) | |
download | buildstream-9fe643e341ed7beecb4072d84e0bbf9432e54902.tar.gz |
.gitlab-ci.yml: Install static buildbox-casd binary for WSL
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9815c76a5..9b7db92cf 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -221,6 +221,10 @@ tests-wsl-master: - df -h - PATH=/root/.local/bin:$PATH tox --version script: + # Install static buildbox-casd binary + - wget https://buildbox-casd-binaries.nyc3.cdn.digitaloceanspaces.com/buildbox-casd-x86_64-linux-20190813-20d41af4.tar.xz + - tar -C /root/.local/bin -xf buildbox-casd-x86_64-linux-20190813-20d41af4.tar.xz + - PATH=/root/.local/bin:$PATH ${TEST_COMMAND} only: - master @@ -237,6 +241,10 @@ tests-wsl-non-master: - df -h - PATH=/root/.local/bin:$PATH tox --version script: + # Install static buildbox-casd binary + - wget https://buildbox-casd-binaries.nyc3.cdn.digitaloceanspaces.com/buildbox-casd-x86_64-linux-20190813-20d41af4.tar.xz + - tar -C /root/.local/bin -xf buildbox-casd-x86_64-linux-20190813-20d41af4.tar.xz + - PATH=/root/.local/bin:$PATH ${TEST_COMMAND} when: manual except: |