Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
ttc18live
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
stgroup
ttc18live
Merge requests
!2
CI and other bugs
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
CI and other bugs
ci
into
master
Overview
0
Commits
16
Pipelines
1
Changes
1
Merged
René Schöne
requested to merge
ci
into
master
4 years ago
Overview
0
Commits
16
Pipelines
1
Changes
1
Expand
0
0
Merge request reports
Viewing commit
9fbc89a9
Prev
Next
Show latest version
1 file
+
28
−
11
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
9fbc89a9
re-enable test, add models-stage to clone ttc repo
· 9fbc89a9
René Schöne
authored
4 years ago
.gitlab-ci.yml
+
28
−
11
Options
stages
:
-
build
-
models
# - test
-
benchmark
@@ -17,23 +18,39 @@ build:
script
:
-
./gradlew --console=plain assemble
#test:
# image: openjdk:11
# stage: test
# needs:
# - build
# script:
# - ./gradlew --console=plain --info test
# artifacts:
# when: always
# reports:
# junit: "*/build/test-results/test/**/TEST-*.xml"
prepareTTCrepo
:
# use same image as other jobs, and it has git already available
image
:
openjdk:11
stage
:
models
script
:
-
git clone --depth=1 git@github.com:TransformationToolContest/ttc2018liveContest.git /ttc2018liveContest
-
cd solve/src/test/resources
-
ln -s /ttc2018liveContest/models .
artifacts
:
paths
:
-
"
solve/src/test/resources/models/1"
-
"
solve/src/test/resources/models/2"
-
"
solve/src/test/resources/models/32"
test
:
image
:
openjdk:11
stage
:
test
needs
:
-
build
-
models
script
:
-
./gradlew --console=plain --info test
artifacts
:
when
:
always
reports
:
junit
:
"
*/build/test-results/test/**/TEST-*.xml"
timing
:
image
:
openjdk:11
stage
:
benchmark
needs
:
-
build
-
models
script
:
-
./all-timed-benchmark.sh
artifacts
:
Loading