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

Merge branch 'feature/ci' into 'main'

Feature/ci

See merge request !1
parents 5392b8f9 5e9845f3
No related branches found
No related tags found
No related merge requests found
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"] [submodule "relast.preprocessor"]
path = 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 { ...@@ -21,6 +21,8 @@ dependencies {
testImplementation testFixtures(project(":relast.preprocessor")) testImplementation testFixtures(project(":relast.preprocessor"))
} }
project.version = "0.2.0"
sourceSets { sourceSets {
main { main {
java.srcDir "src/gen/java" java.srcDir "src/gen/java"
......
relast.preprocessor @ 12668fd8
Subproject commit aeb1e3f9676705f3a05a54bbce175151825b0d7e Subproject commit 12668fd8c2e4eee20000d1e7b43b2d4d17c59d45
...@@ -4,7 +4,7 @@ pluginManagement { ...@@ -4,7 +4,7 @@ pluginManagement {
} }
} }
rootProject.name = 'preprocessor' rootProject.name = 'abstract_type_navigation_generator'
include 'relast.preprocessor' include 'relast.preprocessor'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment