Skip to content

Commit 0d6a0ce

Browse files
authored
Merge pull request #183 from thelamer/master
take web screenshots during testing
2 parents f46f788 + 5dd0353 commit 0d6a0ce

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

Jenkinsfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ pipeline {
2222
DIST_IMAGE = 'ubuntu'
2323
MULTIARCH='true'
2424
CI='true'
25-
CI_WEB='false'
25+
CI_WEB='true'
2626
CI_PORT='32400'
2727
CI_SSL='false'
2828
CI_DELAY='120'
2929
CI_DOCKERENV='TZ=US/Pacific'
3030
CI_AUTH='user:password'
31-
CI_WEBPATH=''
31+
CI_WEBPATH='/web/index.html'
3232
}
3333
stages {
3434
// Setup all the basic environment variables needed for the build
@@ -467,6 +467,7 @@ pipeline {
467467
docker tag lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG}
468468
fi
469469
docker run --rm \
470+
--shm-size=1gb \
470471
-v /var/run/docker.sock:/var/run/docker.sock \
471472
-e IMAGE=\"${IMAGE}\" \
472473
-e DELAY_START=\"${CI_DELAY}\" \

jenkins-vars.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ repo_vars:
1919
- DIST_IMAGE = 'ubuntu'
2020
- MULTIARCH='true'
2121
- CI='true'
22-
- CI_WEB='false'
22+
- CI_WEB='true'
2323
- CI_PORT='32400'
2424
- CI_SSL='false'
2525
- CI_DELAY='120'
2626
- CI_DOCKERENV='TZ=US/Pacific'
2727
- CI_AUTH='user:password'
28-
- CI_WEBPATH=''
28+
- CI_WEBPATH='/web/index.html'

0 commit comments

Comments
 (0)