Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
theodolite
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sören Henning
theodolite
Commits
69766663
Commit
69766663
authored
4 years ago
by
Sören Henning
Browse files
Options
Downloads
Patches
Plain Diff
Add temporary install and split builds
parent
9d812115
No related branches found
No related tags found
4 merge requests
!159
Re-implementation of Theodolite with Kotlin/Quarkus
,
!157
Update Graal Image in CI pipeline
,
!94
Build native images in CI pipeline
,
!83
WIP: Re-implementation of Theodolite with Kotlin/Quarkus
Pipeline
#2271
failed
4 years ago
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+18
-7
18 additions, 7 deletions
.gitlab-ci.yml
with
18 additions
and
7 deletions
.gitlab-ci.yml
+
18
−
7
View file @
69766663
...
...
@@ -190,23 +190,32 @@ deploy-uc4-load-generator:
-
cd theodolite-quarkus
-
export GRADLE_USER_HOME=`pwd`/.gradle
build-theodolite
:
build-theodolite
-jvm
:
stage
:
build
extends
:
.theodolite
script
:
./gradlew --build-cache assemble -Dquarkus.package.type=native
# script: ./gradlew --build-cache assemble
script
:
./gradlew --build-cache assemble
artifacts
:
paths
:
-
"
theodolite-quarkus/build/lib/*"
-
"
theodolite-quarkus/build/*-runner.jar"
# - "theodolite-quarkus/build/*-runner" # For native image
expire_in
:
1 day
build-theodolite-native
:
stage
:
build
extends
:
.theodolite
before_script
:
gu install native-image
# TODO move to image
script
:
./gradlew --build-cache assemble -Dquarkus.package.type=native
artifacts
:
paths
:
-
"
theodolite-quarkus/build/*-runner"
expire_in
:
1 day
test-theodolite
:
stage
:
test
extends
:
.theodolite
needs
:
-
build-theodolite
-
build-theodolite-jvm
-
build-theodolite-native
script
:
./gradlew test --stacktrace
# Disabled for now
...
...
@@ -214,7 +223,8 @@ test-theodolite:
stage
:
check
extends
:
.theodolite
needs
:
-
build-theodolite
-
build-theodolite-jvm
-
build-theodolite-native
-
test-theodolite
script
:
./gradlew ktlintCheck --continue
...
...
@@ -223,7 +233,8 @@ test-theodolite:
stage
:
check
extends
:
.theodolite
needs
:
-
build-theodolite
-
build-theodolite-jvm
-
build-theodolite-native
-
test-theodolite
script
:
./gradlew detekt --continue
...
...
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