genofire/hs_monolith
genofire
/
hs_monolith
Archived
1
0
Fork 0
This repository has been archived on 2020-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
hs_monolith/.gitlab-ci.yml

44 lines
1.4 KiB
YAML
Raw Permalink Normal View History

2017-03-09 00:21:25 +01:00
# This file is a template, and might need editing before it works on your project.
# This template uses the java:8 docker image because there isn't any
# official Gradle image at this moment
#
# This is the Gradle build system for JVM applications
# https://gradle.org/
# https://github.com/gradle/gradle
image: java:8
# Make the gradle wrapper executable. This essentially downloads a copy of
# Gradle to build the project with.
# https://docs.gradle.org/current/userguide/gradle_wrapper.html
# It is expected that any modern gradle project has a wrapper
before_script:
- chmod +x gradlew
# We redirect the gradle user home using -g so that it caches the
# wrapper and dependencies.
# https://docs.gradle.org/current/userguide/gradle_command_line.html
#
# Unfortunately it also caches the build output so
# cleaning removes reminants of any cached builds.
# The assemble task actually builds the project.
# If it fails here, the tests can't run.
build:
stage: build
script:
- ./gradlew -g /cache/.gradle clean assemble
allow_failure: false
# Use the generated build output to run the tests.
test:
stage: test
2017-03-09 21:22:22 +01:00
services:
- postgres:9
variables:
POSTGRES_DB: monolith
POSTGRES_USER: monolith
POSTGRES_PASSWORD: monolith_it
2017-03-09 22:31:47 +01:00
LAB_MONOLITH_DB_HOST: postgres
LAB_MONOLITH_DB_PORT: "5432"
2017-03-09 21:22:22 +01:00
LAB_MONOLITH_DB_PASSWORD: monolith_it
2017-03-09 00:21:25 +01:00
script:
2017-03-09 21:22:22 +01:00
- ./gradlew -g /cache/.gradle check