mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-01-18 21:32:35 +01:00
.gitlab-ci.yml: Add basic configuration for GitLab continuous integration.
This commit is contained in:
parent
cee5264ab9
commit
a8be47b2d6
15
.gitlab-ci.yml
Normal file
15
.gitlab-ci.yml
Normal file
@ -0,0 +1,15 @@
|
||||
image: ubuntu:bionic
|
||||
|
||||
variables:
|
||||
GRADLE_VERSION: "4.10.3"
|
||||
|
||||
before_script:
|
||||
- apt-get update
|
||||
- apt-get -y upgrade
|
||||
- apt-get -y install openjdk-11-jdk gradle
|
||||
- gradle wrapper --gradle-version=$GRADLE_VERSION --stacktrace
|
||||
|
||||
build:
|
||||
script:
|
||||
- java -version
|
||||
- ./gradlew build --stacktrace
|
Loading…
Reference in New Issue
Block a user