Merge pull request #183 from thelamer/master

take web screenshots during testing
This commit is contained in:
saarg 2019-06-03 19:03:59 +02:00 committed by GitHub
commit 0d6a0ce954
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

5
Jenkinsfile vendored
View File

@ -22,13 +22,13 @@ pipeline {
DIST_IMAGE = 'ubuntu'
MULTIARCH='true'
CI='true'
CI_WEB='false'
CI_WEB='true'
CI_PORT='32400'
CI_SSL='false'
CI_DELAY='120'
CI_DOCKERENV='TZ=US/Pacific'
CI_AUTH='user:password'
CI_WEBPATH=''
CI_WEBPATH='/web/index.html'
}
stages {
// Setup all the basic environment variables needed for the build
@ -467,6 +467,7 @@ pipeline {
docker tag lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG}
fi
docker run --rm \
--shm-size=1gb \
-v /var/run/docker.sock:/var/run/docker.sock \
-e IMAGE=\"${IMAGE}\" \
-e DELAY_START=\"${CI_DELAY}\" \

View File

@ -19,10 +19,10 @@ repo_vars:
- DIST_IMAGE = 'ubuntu'
- MULTIARCH='true'
- CI='true'
- CI_WEB='false'
- CI_WEB='true'
- CI_PORT='32400'
- CI_SSL='false'
- CI_DELAY='120'
- CI_DOCKERENV='TZ=US/Pacific'
- CI_AUTH='user:password'
- CI_WEBPATH=''
- CI_WEBPATH='/web/index.html'