Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
trainbenchmark
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jesper
trainbenchmark
Commits
7f9e1074
Commit
7f9e1074
authored
6 years ago
by
Carl Mai
Browse files
Options
Downloads
Patches
Plain Diff
do not call generate in build phase, do not benchmark
parent
4841de48
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+0
-19
0 additions, 19 deletions
.gitlab-ci.yml
Dockerfile
+4
-2
4 additions, 2 deletions
Dockerfile
with
4 additions
and
21 deletions
.gitlab-ci.yml
+
0
−
19
View file @
7f9e1074
...
...
@@ -11,7 +11,6 @@ variables:
stages
:
-
build
-
test
-
benchmark
-
release
before_script
:
...
...
@@ -42,24 +41,6 @@ test_check:
-
docker pull $CONTAINER_TEST_IMAGE
-
docker run $CONTAINER_TEST_IMAGE /trainbenchmark/gradlew --no-daemon check
benchmark_inject
:
stage
:
benchmark
tags
:
-
dockered
script
:
-
docker pull $CONTAINER_TEST_IMAGE
-
docker run $CONTAINER_TEST_IMAGE /trainbenchmark/gradlew --no-daemon individualInjectBenchmark
benchmark_repair
:
stage
:
benchmark
tags
:
-
dockered
script
:
-
docker pull $CONTAINER_TEST_IMAGE
-
docker run $CONTAINER_TEST_IMAGE /trainbenchmark/gradlew --no-daemon individualRepairBenchmark
release-image
:
stage
:
release
tags
:
...
...
This diff is collapsed.
Click to expand it.
Dockerfile
+
4
−
2
View file @
7f9e1074
...
...
@@ -116,9 +116,11 @@ RUN chown -R user:user /trainbenchmark
USER
user
RUN
./gradlew
--no-daemon
initScripts
# first time shadowJar always fails with jastadd-specialized
RUN
./gradlew
--no-daemon
build shadowJar
-x
test
;
true
RUN
./gradlew
--no-daemon
build shadowJar
-x
test
;
true
RUN
./gradlew
--no-daemon
generate
RUN
./gradlew
--no-daemon
build shadowJar
-x
test
# RUN ./gradlew --no-daemon generate
# RUN ./gradlew --no-daemon individualInjectBenchmark
# RUN ./gradlew --no-daemon individualRepairBenchmark
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment