image: node stages: - build - packaging - test variables: POSTGRES_DB: map_viewer POSTGRES_USER: map_viewer POSTGRES_PASSWORD: "123qweasdzxc" test_frontend: stage: test script: - cd frontend-js - npm install - npm test test_backend 1 15: image: maven:latest stage: test script: #xvfb is for X11 connection used by some parts of the java code: https://stackoverflow.com/a/47575851/1127920 - apt-get update - apt-get install -y xvfb - Xvfb :99 & - export DISPLAY=:99 - mvn -DskipTests=true clean install -pl commons -am - mvn test -pl commons test_backend 2 15: image: maven:latest services: - postgres:9.6 stage: test script: - mkdir /etc/minerva/ - cp test-db-ci.properties /etc/minerva/test-db.properties - mvn -DskipTests=true clean install -pl annotation -am - mvn test -pl annotation test_backend 3 15: image: maven:latest stage: test script: - mvn -DskipTests=true clean install -pl CellDesigner-plugin -am - mvn test -pl CellDesigner-plugin test_backend 4 15: image: maven:latest stage: test script: - mvn -DskipTests=true clean install -pl converter -am - mvn test -pl converter test_backend 5 15: image: maven:latest stage: test script: - mvn -DskipTests=true clean install -pl converter-graphics -am - mvn test -pl converter-graphics test_backend 6 15: image: maven:latest stage: test script: - mvn -DskipTests=true clean install -pl converter-CellDesigner -am - mvn test -pl converter-CellDesigner test_backend 7 15: image: maven:latest services: - postgres:9.6 stage: test script: - mkdir /etc/minerva/ - cp test-db-ci.properties /etc/minerva/test-db.properties - mvn -DskipTests=true clean install -pl converter-SBGNML -am - mvn test -pl converter-SBGNML test_backend 8 15: image: maven:latest stage: test script: - mvn -DskipTests=true clean install -pl converter-sbml -am - mvn test -pl converter-sbml test_backend 9 15: image: maven:latest stage: test script: - mvn -DskipTests=true clean install -pl model -am - mvn test -pl model test_backend 10 15: image: maven:latest stage: test script: - mvn -DskipTests=true clean install -pl model-command -am - mvn test -pl model-command test_backend 11 15: image: maven:latest stage: test script: - mvn -DskipTests=true clean install -pl pathvisio -am - mvn test -pl pathvisio test_backend 12 15: image: maven:latest services: - postgres:9.6 stage: test script: - mkdir /etc/minerva/ - cp test-db-ci.properties /etc/minerva/test-db.properties - mvn -DskipTests=true clean install -pl persist -am - mvn test -pl persist test_backend 13 15: image: maven:latest services: - postgres:9.6 stage: test script: - mkdir /etc/minerva/ - cp test-db-ci.properties /etc/minerva/test-db.properties - mvn -DskipTests=true clean install -pl reactome -am - mvn test -pl reactome test_backend 14 15: image: maven:latest services: - postgres:9.6 stage: test script: - mkdir /etc/minerva/ - cp test-db-ci.properties /etc/minerva/test-db.properties - mvn -DskipTests=true clean install -pl rest-api -am - mvn test -pl rest-api test_backend 15 15: image: maven:latest services: - postgres:9.6 stage: test script: - mkdir /etc/minerva/ - cp test-db-ci.properties /etc/minerva/test-db.properties - mvn -DskipTests=true clean install -pl service -am - mvn test -pl service build_war: image: maven:latest stage: build only: - tags tags: - privileged artifacts: expire_in: 1 day paths: - minerva.war script: - apt-get update - apt-get install -y curl gnupg git ant sudo - curl -sL https://deb.nodesource.com/setup_9.x | sudo -E bash - - apt-get install -y nodejs - ant maven-build - cp web/target/web-1.0.war minerva.war build_debian_package: image: debian stage: packaging only: - tags tags: - privileged dependencies: - build_war artifacts: paths: - "debian/*.deb" script: - mkdir web/target/ - mv minerva.war web/target/ - apt-get update - apt-get install -y dh-make build-essential lintian devscripts xsltproc fakeroot xsltproc docbook-xsl - export DEBFULLNAME="Piotr Gawron" - export DEBEMAIL="piotr.gawron@uni.lu" - debian/create-debian-pkg.sh test_install_debian_package: image: debian stage: test only: - tags # we need to run it in privileged mode due to: https://stackoverflow.com/questions/29683231/tomcat7-fail-to-start-inside-ubuntu-docker-container tags: - privileged services: - name: piotrgawron/debian-repo alias: debian-repo dependencies: - build_debian_package script: - apt-get update - apt-get install -y ssh software-properties-common dirmngr wget curl - debian_file=$(ls debian/*.deb) - echo "PUT $debian_file /docker/incoming" | sftp -o StrictHostKeyChecking=no user@debian-repo - ssh root@debian-repo /usr/local/sbin/reprepro-import - apt-add-repository "deb http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main" - apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys EEA14886 - apt-add-repository "deb http://debian-repo/ unstable main" - apt-get update # auto accept oracle license - echo debconf shared/accepted-oracle-license-v1-1 select true | debconf-set-selections #hacky way of installing minerva on docker - by default rc-invoke is preventing services changes on docker - mv /usr/sbin/policy-rc.d /usr/sbin/policy-rc.d.backup - mv Docker/policy-rc.d /usr/sbin/policy-rc.d - apt-get install -y --allow-unauthenticated minerva - mv /usr/sbin/policy-rc.d.backup /usr/sbin/policy-rc.d - service tomcat8 start #we need to wait a bit for tomcat start - sleep 15 - wget http://localhost:8080/minerva/ #test if we can login and list projects - test 200 = $(curl --write-out %{http_code} --silent --output /dev/null -c cookie.txt http://localhost:8080/minerva/api/doLogin) - test 200 = $(curl --write-out %{http_code} --silent --output /dev/null --cookie cookie.txt http://localhost:8080/minerva/api/projects/) build_rpm: image: centos:7 stage: packaging dependencies: - build_war only: - tags tags: - privileged artifacts: paths: - "rpm/rpmbuildtemp/RPMS/noarch/minerva-*.rpm" script: - yum -y install rpmdevtools unzip - rpm/buildrpm.sh minerva.war rpmlint: image: centos:7 stage: test dependencies: - build_rpm tags: - privileged only: - tags script: - yum -y install rpmlint - rpmlint rpm/rpmbuildtemp/RPMS/noarch/minerva-*.rpm