forked from seleniumQuery/seleniumQuery
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshippable.yml
More file actions
28 lines (25 loc) · 1.26 KB
/
Copy pathshippable.yml
File metadata and controls
28 lines (25 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# http://docs.shippable.com/tutorials/ci/hub-docker-pull-image/
# https://hub.docker.com/search/?isAutomated=0&isOfficial=0&page=1&pullCount=0&q=java8+chrome&starCount=0
# https://github.com/search?utf8=%E2%9C%93&q=shippable+build+pre_ci++%22docker+pull%22+extension%3Ayml&type=Code&ref=searchresults
# http://docs.shippable.com/ci/languages/java/
# https://github.com/search?utf8=%E2%9C%93&q=shippable+jacoco++extension%3Ayml&type=Code&ref=searchresults
env:
# shippable had issues with symbols in my name (which were in these env vars)
- COMMITTER=ignored LAST_AUTHOR=ignored
build:
pre_ci_boot:
image_name: acdcjunior/ubuntu-chromedriver-java8-lsb
image_tag: latest
pull: true
advancedReporting: true
ci:
# - ps -aux
# - pwd
# - xvfb-run --server-num "$(echo "$DISPLAY" | sed 's/:\([0-9][0-9]*\).*/\1/')" --server-args "-ac -screen 0 ${SCREEN_WIDTH}x${SCREEN_HEIGHT}x${SCREEN_DEPTH}" bash
- ps -aux
- pwd
- mkdir -p shippable/codecoverage
- chmod +x gradlew
- xvfb-run --server-num "$(echo "$DISPLAY" | sed 's/:\([0-9][0-9]*\).*/\1/')" --server-args "-ac -screen 0 ${SCREEN_WIDTH}x${SCREEN_HEIGHT}x${SCREEN_DEPTH}" ./gradlew check jacocoTestReport -i
- cp -r build shippable/codecoverage
- bash <(curl -s https://codecov.io/bash)