-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
26 lines (22 loc) · 886 Bytes
/
.gitlab-ci.yml
File metadata and controls
26 lines (22 loc) · 886 Bytes
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
image: ubuntu:bionic
variables:
GRADLE_OPTS: "-Dorg.gradle.daemon=false"
before_script:
- apt-get update
- apt-get -y upgrade
- apt-get -y install openjdk-11-jdk binutils curl rpm fakeroot wget gnupg2 software-properties-common
# Install AdoptOpenJDK 14
- wget -qO - https://adoptopenjdk.jfrog.io/adoptopenjdk/api/gpg/key/public | apt-key add -
- add-apt-repository --yes https://adoptopenjdk.jfrog.io/adoptopenjdk/deb/
- apt-get -y install adoptopenjdk-14-hotspot
build:
script:
- java -version
- echo Gradle OPTS are $GRADLE_OPTS
- ./gradlew -Ddownload.jpackage=true buildCI consensusj-netwallet-fx:jpackage --stacktrace
artifacts:
paths:
- consensusj-netwallet-fx/build/jpackage
- consensusj-signwallet-fx/build/jpackage
# Note: You can test changes to this file locally with:
# gitlab-runner exec docker --docker-privileged build