Newer
Older
################################################################################
## Copyright © 2018 Privategrity Corporation #
## #
## All rights reserved. #
################################################################################
# This drives all the integration tests. When you create a new test, add it as a
# new stage to this file. The stage should have a very clear report and may need
# to run a couple commands to publish.
cache:
untracked: true
key: "$CI_BUILD_REF_NAME"
# paths:
# - vendor/
variables:
REPO_NAME: server
DOCKER_IMAGE: bmastc/golang-glide:latest
# See https://docs.gitlab.com/ee/api/jobs.html#download-a-single-artifact-file-from-specific-tag-or-branch
REPOS_API: https://gitlab.com/api/v4/projects/elixxir%2F
DL_URL_FRAG: jobs/artifacts/dispatch/raw/release
SERVER_URL: ${REPOS_API}server/$DL_URL_FRAG/server.linux64?job=build
CLIENT_URL: ${REPOS_API}client/$DL_URL_FRAG/client.linux64?job=build
UDB_URL: ${REPOS_API}user-discovery-bot/$DL_URL_FRAG/udb.linux64?job=build
GATEWAY_URL: ${REPOS_API}gateway/$DL_URL_FRAG/gateway.linux64?job=build
before_script:
##
## Go Setup
##
Rick Carback
committed
## - go version || echo "Go executable not found."
## - mkdir -p $GOPATH/src/$REPO_DIR
## - ln -s $CI_PROJECT_DIR $GOPATH/src/$REPO_DIR/$REPO_NAME
## - cd $GOPATH/src/$REPO_DIR/$REPO_NAME
- echo $CI_BUILD_REF
- echo $CI_PROJECT_DIR
stages:
- installbinaries
installbinaries:
stage: installbinaries
image: $DOCKER_IMAGE
script:
- mkdir -p ~/.elixxir
- mkdir -p bin
- "curl -f -L -H \"PRIVATE-TOKEN: $PATKEY\" -o bin/server $SERVER_URL"
- chmod +x bin/server
- "curl -f -L -H \"PRIVATE-TOKEN: $PATKEY\" -o bin/client $CLIENT_URL"
- chmod +x bin/client
- "curl -f -L -H \"PRIVATE-TOKEN: $PATKEY\" -o bin/udb $UDB_URL"
- chmod +x bin/udb
- "curl -f -L -H \"PRIVATE-TOKEN: $PATKEY\" -o bin/gateway $GATEWAY_URL"
- chmod +x bin/gateway
- echo $PWD
- bin/server --version
- bin/client --version
- bin/udb --version
- bin/gateway --version
artifacts:
when: always
paths:
- bin/
basice2e:
image: $DOCKER_IMAGE
script:
- mkdir -p ~/.elixxir
artifacts:
- bin/
image: $DOCKER_IMAGE
script:
- mkdir -p ~/.elixxir
- echo $PWD
- cd smokeinfra
- ./run.sh
- cd ..
artifacts:
when: always
paths:
- smokeinfra/results/
- bin/
smokeinfraBatch4:
image: $DOCKER_IMAGE
script:
- mkdir -p ~/.elixxir
- echo $PWD
- cd smokeinfra
- git checkout -- .
- ./run.sh
- cd ..
artifacts:
when: always
paths:
- smokeinfra/results/
- bin/
smokeinfraBatch1:
image: $DOCKER_IMAGE
script:
- mkdir -p ~/.elixxir
- echo $PWD
- cd smokeinfra
- git checkout -- .
- ./run.sh
- cd ..
artifacts:
when: always
paths:
- smokeinfra/results/
- bin/
benchmark:
stage: benchmark
image: $DOCKER_IMAGE
script:
# These take about 2 minutes each right now, so 16 total
- ./bin/server benchmark -b 1024 -n 1 -i 4
- ./bin/server benchmark -b 1024 -n 5 -i 1
artifacts:
when: always
paths:
- bin/