.gitlab-ci.yml 361 Bytes
Newer Older
FritzFlorian committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
image: "ubuntu:latest"

stages:
  - build
  - test

before_script:
  - apt update; apt-get install --yes --force-yes build-essential cmake

build_cmake:
  stage: build
  script:
    ./build_cmake_release.sh
  artifacts:
    paths:
      - cmake-build-release/bin/

run_tests:
  stage: test
  script:
    ./build_cmake_release.sh; ./cmake-build-release/bin/tests