-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshippable.yml
More file actions
42 lines (38 loc) · 1.02 KB
/
shippable.yml
File metadata and controls
42 lines (38 loc) · 1.02 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
language: none
env:
global:
- JAVA_TOOL_OPTIONS=-Dfile.encoding=UTF-8
build:
pre_ci_boot:
image_name: agssl123/vscodeextension
image_tag: latest
pull: true
options: "-e HOME=/root"
before_script:
- mkdir -p shippable/testresults
- ln -s ./server/target/scala-2.12/scoverage-report shippable/testresults
ci:
- cd server/
- sbt compile
- sbt coverage test
- sbt coverageReport
- sbt assembly
- java -jar './target/scala-2.12/OPAL Command Server-assembly-0.1.0-SNAPSHOT.jar' &
- cd ..
- cd extension
- npm install
- npm run postinstall
- "export DISPLAY=:99.0"
- xvfb-run --server-args="-ac" npm test
integrations:
notifications:
- integrationName: email
type: email
recipients:
- alexandergoessl@web.de
sendFailingSnippet: true
on_success: change
on_failure: always
on_cancel: never
on_start: never
on_pull_request: always