diff options
author | William Salmon <will.salmon@codethink.co.uk> | 2020-07-24 16:15:20 +0100 |
---|---|---|
committer | William Salmon <will.salmon@codethink.co.uk> | 2020-07-24 16:18:39 +0100 |
commit | d03c1446c1df6cf0a856600f0d8e946ce96a43c2 (patch) | |
tree | 2c8a6c3d33964f41eee6acdfa536120e3d9cca8c /.gitlab-ci.yml | |
parent | b6e4207df882fe580b767e7a8c56e3c0ab5e559e (diff) | |
download | buildstream-d03c1446c1df6cf0a856600f0d8e946ce96a43c2.tar.gz |
Add a remote cache to overnight buildswillsalmon/overnightcache
This means the over nights will also push and pull when they did not in
the past.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7ba05f566..02c7f6155 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -345,6 +345,20 @@ docs: overnight-tests: <<: *overnight-tests-template script: + - | + cat > ~/.config/buildstream.conf << EOF + # Get a lot of output in case of errors + logging: + error-lines: 80 + # + # Artifacts + # + artifacts: + - url: https://cache-test.buildstream.build:11002 + client-cert: $OVERNIGHT_CACHE_PUSH_CERT + client-key: $OVERNIGHT_CACHE_PUSH_KEY + push: true + EOF - make -C freedesktop-sdk tags: - overnight-tests |