Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
intermediate-format
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
bibliothek-der-neologie
intermediate-format
Commits
940c3715
Commit
940c3715
authored
6 years ago
by
Michelle Weidling
Browse files
Options
Downloads
Patches
Plain Diff
Setup CI
parent
ccbe9974
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+57
-0
57 additions, 0 deletions
.gitlab-ci.yml
with
57 additions
and
0 deletions
.gitlab-ci.yml
0 → 100644
+
57
−
0
View file @
940c3715
image
:
docker.gitlab.gwdg.de/fontane-notizbuecher/build:latest
stages
:
-
build
-
test
-
deploy
build-develop
:
except
:
-
master
-
tags
stage
:
build
script
:
-
ant
artifacts
:
paths
:
-
build/*.xar
build-master
:
only
:
-
master
stage
:
build
script
:
-
cp master.build.properties local.build.properties
-
ant
artifacts
:
paths
:
-
build/*.xar
installation
:
except
:
-
tags
stage
:
test
script
:
-
ant test
-
bash test/eXist-db-*/bin/startup.sh | tee output.log &
# wait for eXist
-
while [ $(curl --head --silent http://localhost:8080 | grep -c "200 OK") == 0 ]; do sleep 2s; done
# shutdown eXist
-
bash test/eXist-db-*/bin/shutdown.sh
artifacts
:
paths
:
-
output.log
-
test/eXist-db-*/webapp/WEB-INF/logs/expath-repo.log
reports
:
junit
:
tests-*.xml
upload
:
only
:
-
master
-
develop
except
:
-
tags
stage
:
deploy
script
:
-
FILENAME=$(ls build/*.xar)
-
curl -u ci:${EXIST_UPLOAD_PW} -X POST -F file=@${FILENAME} https://ci.de.dariah.eu/exist-upload
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