Skip to content
Snippets Groups Projects
.gitlab-ci.yml 9.86 KiB
stages:
  - build
  - test
  - check
  - deploy

.dind:
  tags:
    - exec-dind
  # see https://docs.gitlab.com/ee/ci/docker/using_docker_build.html#tls-enabled
  # for image usage and settings for building with TLS and docker in docker
  image: docker:19.03.1
  services:
    - docker:19.03.1-dind
  variables:
    DOCKER_TLS_CERTDIR: "/certs"

# Theodolite Helm Chart

lint-helm:
  stage: check
  image:
    name: alpine/helm:3.5.2
    entrypoint: [""]
  tags:
    - exec-docker
  script: helm lint execution/helm/


# Theodolite Benchmarks

.benchmarks:
  image: openjdk:11-jdk
  tags:
    - exec-docker
  variables:
    GRADLE_OPTS: "-Dorg.gradle.daemon=false"
  cache:
    paths:
      - .gradle
  before_script:
    - cd theodolite-benchmarks
    - export GRADLE_USER_HOME=`pwd`/.gradle

build-benchmarks:
  stage: build
  extends: .benchmarks
  script: ./gradlew --build-cache assemble
  artifacts:
    paths:
      - "theodolite-benchmarks/build/libs/*.jar"
      - "theodolite-benchmarks/*/build/libs/*.jar"
      - "theodolite-benchmarks/*/build/distributions/*.tar"
    expire_in: 6 hours

test-benchmarks:
  stage: test
  extends: .benchmarks
  needs:
    - build-benchmarks
  script: ./gradlew test --continue
  artifacts:
    reports:
      junit:
        - "theodolite-benchmarks/**/build/test-results/test/TEST-*.xml"

checkstyle-benchmarks:
  stage: check
  extends: .benchmarks
  needs: