Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
relational-rags
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
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
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
JastAdd
relational-rags
Merge requests
!15
Resolve "Creation of jar in CI fails"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Creation of jar in CI fails"
26-creation-of-jar-in-ci-fails
into
develop
Overview
0
Commits
9
Pipelines
8
Changes
1
Merged
René Schöne
requested to merge
26-creation-of-jar-in-ci-fails
into
develop
5 years ago
Overview
0
Commits
9
Pipelines
8
Changes
1
Expand
Closes
#26 (closed)
Edited
5 years ago
by
René Schöne
0
0
Merge request reports
Viewing commit
74ac8cf1
Prev
Next
Show latest version
1 file
+
4
−
29
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
74ac8cf1
Do not use cache for CI, and merge build and jar job.
· 74ac8cf1
René Schöne
authored
5 years ago
.gitlab-ci.yml
+
4
−
29
Options
stages
:
-
build
-
test
-
jar
build
:
image
:
openjdk:8
stage
:
build
script
:
-
./gradlew --console=plain --build-cache assemble
cache
:
key
:
"
$CI_COMMIT_REF_NAME"
policy
:
push
-
./gradlew --console=plain assemble jar
artifacts
:
paths
:
-
build
-
.gradle
-
"
/builds/jastadd/relational-rags/build/libs/*relast*.jar"
test
:
image
:
openjdk:8
stage
:
test
script
:
-
./gradlew --continue --console=plain --info check
cache
:
key
:
"
$CI_COMMIT_REF_NAME"
policy
:
pull
paths
:
-
build
-
.gradle
jar
:
image
:
openjdk:8
stage
:
jar
script
:
-
./gradlew --continue --console=plain --info jar
cache
:
key
:
"
$CI_COMMIT_REF_NAME"
policy
:
pull
paths
:
-
build
-
.gradle
artifacts
:
paths
:
-
"
/builds/jastadd/*/build/libs/*relast*.jar"
-
./gradlew --console=plain --info test
Loading