summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2019-08-12 10:02:18 -0400
committerTom Rini <trini@konsulko.com>2019-08-12 15:19:18 -0400
commitedbe0d5664af28005f14bf02f48ca95bd334c0b7 (patch)
tree30c0c0b4992efc991ffbaab961386dcb03aafa2d /.gitlab-ci.yml
parentfeb5a02f869d5678190dfc915ef6c2781b4f7a6c (diff)
gitlab-ci: Add USER environment variable to buildman/patman tests
The way that some of the tests here are designed, they expect USER to be set in the environment. This is not the case in the docker images, so set a reasonable value. Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0759561ce9..98e03d6ffb 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -152,12 +152,14 @@ Run patman testsuite:
script:
- git config --global user.name "GitLab CI Runner"
- git config --global user.email trini@konsulko.com
+ - export USER=gitlab
- ./tools/patman/patman --test
Run buildman testsuite:
tags: [ 'all' ]
stage: testsuites
script:
+ - export USER=gitlab
- ./tools/buildman/buildman -t
Run binman and dtoc testsuite: