Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
saref4ener
Manage
Activity
Members
Labels
Plan
Issues
2
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
SAREF
saref4ener
Commits
73ba9b38
Unverified
Commit
73ba9b38
authored
7 months ago
by
Maxime Lefrançois
Browse files
Options
Downloads
Patches
Plain Diff
update gitlab-ci
parent
5d9ba605
Branches
develop-v1.2.1
prerelease-v1.2.1
release-v1.2.1
No related merge requests found
Pipeline
#6371
passed with stages
in 38 seconds
Changes
1
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+3
-77
3 additions, 77 deletions
.gitlab-ci.yml
with
3 additions
and
77 deletions
.gitlab-ci.yml
+
3
−
77
View file @
73ba9b38
image
:
openjdk:8-jdk
variables
:
SAREF_DEV_KEY
:
<my_private_key>
SAREF_PORTAL_KEY
:
<my_private_key>
before_script
:
-
eval $(ssh-agent -s)
-
ssh-add <(echo "$SAREF_DEV_KEY")
-
mkdir -p ~/.ssh
-
'
[[
-f
/.dockerenv
]]
&&
echo
-e
"Host
*\n\tStrictHostKeyChecking
no\n\n"
>
~/.ssh/config'
stages
:
-
test
-
build
-
deploy
test-develop
:
stage
:
test
script
:
-
curl -L -o saref-pipeline.jar "https://labs.etsi.org/rep/saref/saref-pipeline/-/jobs/artifacts/master/raw/target/saref-pipeline.jar?job=build"
-
java -jar saref-pipeline.jar develop -s && touch target/success
allow_failure
:
true
except
:
-
/^prerelease-v/
-
/^release-v/
artifacts
:
when
:
always
paths
:
-
target/site
-
target/success
reports
:
junit
:
target/report_output.xml
test-prerelease
:
stage
:
test
script
:
-
curl -L -o saref-pipeline.jar "https://labs.etsi.org/rep/saref/saref-pipeline/-/jobs/artifacts/master/raw/target/saref-pipeline.jar?job=build"
-
java -jar saref-pipeline.jar release -t && touch target/success
allow_failure
:
true
only
:
-
/^prerelease-v/
artifacts
:
when
:
always
paths
:
-
target/site
-
target/success
reports
:
junit
:
target/report_output.xml
deploy-report
:
stage
:
deploy
script
:
-
scp -pr target/site saref-dev@saref.etsi.org:~/snapshot/$CI_PIPELINE_ID
-
echo "SAREF pipeline report https://saref.etsi.org/snapshot/$CI_PIPELINE_ID/report.html"
-
exit $(test -f target/success) $?
except
:
-
/^release-v/
test-release
:
stage
:
test
script
:
-
curl -L -o saref-pipeline.jar "https://labs.etsi.org/rep/saref/saref-pipeline/-/jobs/artifacts/master/raw/target/saref-pipeline.jar?job=build"
-
java -jar saref-pipeline.jar release -t
only
:
-
/^release-v/
trigger-release
:
stage
:
deploy
only
:
-
/^release-v/
variables
:
SAREF_DEV_KEY
:
$SAREF_DEV_KEY
SAREF_PORTAL_KEY
:
$SAREF_PORTAL_KEY
trigger
:
project
:
saref/saref-portal
branch
:
master
include
:
-
project
:
'
saref/saref-core'
file
:
'
.gitlab-ci.yml'
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
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