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
b739ae75
Prev
Next
Show latest version
1 file
+
3
−
33
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
b739ae75
merge test and benchmark job
· b739ae75
René Schöne
authored
4 years ago
.gitlab-ci.yml
+
3
−
33
Options
stages
:
-
models
-
build
-
test
-
benchmark
before_script
:
-
export GRADLE_USER_HOME=`pwd`/.gradle
@@ -13,53 +11,25 @@ cache:
-
.gradle/caches
-
ttc2018liveContest
prepareTTCrepo
:
# use same image as other jobs, and it has git already available
image
:
openjdk:11
stage
:
models
script
:
-
"
[
-d
ttc2018liveContest
]
||
git
clone
--depth=1
https://github.com/TransformationToolContest/ttc2018liveContest.git
ttc2018liveContest"
-
"
(
cd
ttc2018liveContest
&&
git
pull
)"
-
ln -sf ../../../../ttc2018liveContest/models solve/src/test/resources
# artifacts:
# paths:
# - "ttc2018liveContest/models"
# - "solve/src/test/resources/models"
# - "solve/src/test/resources/models/1"
# - "solve/src/test/resources/models/2"
# - "solve/src/test/resources/models/32"
build
:
image
:
openjdk:11
stage
:
build
script
:
-
./gradlew --console=plain assemble
test
:
test
AndBenchmark
:
image
:
openjdk:11
stage
:
test
needs
:
-
build
-
prepareTTCrepo
script
:
-
"
[
-d
ttc2018liveContest
]
||
git
clone
--depth=1
https://github.com/TransformationToolContest/ttc2018liveContest.git
ttc2018liveContest"
-
ln -sf ../../../../ttc2018liveContest/models solve/src/test/resources
-
ls solve/src/test/resources/models
-
./gradlew --console=plain test
-
./all-timed-benchmark.sh
artifacts
:
when
:
always
reports
:
junit
:
"
*/build/test-results/test/**/TEST-*.xml"
timing
:
image
:
openjdk:11
stage
:
benchmark
needs
:
-
build
-
prepareTTCrepo
script
:
-
ln -sf ../../../../ttc2018liveContest/models solve/src/test/resources
-
ls solve/src/test/resources/models
-
./all-timed-benchmark.sh
artifacts
:
paths
:
-
results/
Loading