Skip to content
Snippets Groups Projects
Commit 5e9845f3 authored by Johannes Mey's avatar Johannes Mey
Browse files

Feature/ci

parent 5392b8f9
No related branches found
No related tags found
1 merge request!1Feature/ci
variables:
GIT_SUBMODULE_STRATEGY: recursive
stages:
- build
- test
build:
image: openjdk:8
stage: build
script:
# see discussion in the answer of https://stackoverflow.com/questions/44911155/gradle-how-to-include-runtimeonly-dependencies-in-javaexec-classpath
- ./gradlew --console=plain --no-daemon relast.preprocessor:jar
- ./gradlew --console=plain --no-daemon assemble jar
artifacts:
paths:
- build/libs/*.jar
test:
image: openjdk:8
stage: test
script:
- ./gradlew --console=plain --no-daemon check
artifacts:
reports:
junit: build/test-results/test/**/TEST-*.xml
[submodule "relast.preprocessor"]
path = relast.preprocessor
url = git@git-st.inf.tu-dresden.de:jastadd/relast-preprocessor.git
url = ../../relast-preprocessor.git
......@@ -21,6 +21,8 @@ dependencies {
testImplementation testFixtures(project(":relast.preprocessor"))
}
project.version = "0.2.0"
sourceSets {
main {
java.srcDir "src/gen/java"
......
Subproject commit aeb1e3f9676705f3a05a54bbce175151825b0d7e
Subproject commit 12668fd8c2e4eee20000d1e7b43b2d4d17c59d45
......@@ -4,7 +4,7 @@ pluginManagement {
}
}
rootProject.name = 'preprocessor'
rootProject.name = 'abstract_type_navigation_generator'
include 'relast.preprocessor'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment