Jeremiah Bonney pushed to branch master at BuildGrid / buildgrid
Commits:
-
da3ba23a
by Carter Sande at 2019-02-22T18:26:29Z
-
da455172
by Jeremiah Bonney at 2019-02-22T18:26:29Z
1 changed file:
Changes:
... | ... | @@ -46,6 +46,12 @@ tests-debian-stretch: |
46 | 46 |
run-dummy-job-debian:
|
47 | 47 |
<<: *dummy-job
|
48 | 48 |
|
49 |
+buildbox-e2e:
|
|
50 |
+ image: registry.gitlab.com/buildgrid/buildbox/buildbox-e2e:latest
|
|
51 |
+ stage: test
|
|
52 |
+ before_script: []
|
|
53 |
+ script:
|
|
54 |
+ - BUILDGRID_SOURCE_ROOT=`pwd` end-to-end-test.sh
|
|
49 | 55 |
|
50 | 56 |
# Post-build stage, documentation, coverage report...
|
51 | 57 |
#
|
... | ... | @@ -96,3 +102,14 @@ pages: |
96 | 102 |
- public/
|
97 | 103 |
only:
|
98 | 104 |
- master
|
105 |
+ |
|
106 |
+trigger-buildbox-e2e-rebuild:
|
|
107 |
+ image: ubuntu:bionic
|
|
108 |
+ stage: deploy
|
|
109 |
+ variables:
|
|
110 |
+ GIT_STRATEGY: none
|
|
111 |
+ script:
|
|
112 |
+ - apt-get update && apt-get install -y curl
|
|
113 |
+ - curl --request POST --form "token=$CI_JOB_TOKEN" --form ref=master https://gitlab.com/api/v4/projects/buildgrid%2Fbuildbox%2Fbuildbox-e2e/trigger/pipeline
|
|
114 |
+ only:
|
|
115 |
+ - master
|