Skip to content
Snippets Groups Projects
Commit d0c5abe4 authored by Michelle Weidling's avatar Michelle Weidling :blowfish:
Browse files

Merge tag 'v1.0.0' into develop

First fully productive version
parents c9b6571a da5bcd3d
No related branches found
No related tags found
No related merge requests found
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
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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment