27 lines
478 B
YAML
27 lines
478 B
YAML
# image: gcc
|
|
#
|
|
# stages:
|
|
# - build
|
|
# - test
|
|
#
|
|
# build-job:
|
|
# stage: build
|
|
# before_script:
|
|
# - apt-get update && apt-get install -y make cmake git coreutils
|
|
# script:
|
|
# - mkdir build
|
|
# - cd build
|
|
# - cmake ..
|
|
# - make tests
|
|
# artifacts:
|
|
# untracked: false
|
|
# expire_in: 30 days
|
|
# paths:
|
|
# - build/tests/tests
|
|
#
|
|
# unit-test-job:
|
|
# stage: test
|
|
# script:
|
|
# - echo "Running unit tests"
|
|
# - build/tests/tests
|