debian-mirror-gitlab/lib/gitlab/ci/templates/C++.gitlab-ci.yml

27 lines
702 B
YAML
Raw Normal View History

2016-09-13 17:45:13 +05:30
# use the official gcc image, based on debian
# can use verions as well, like gcc:5.2
# see https://hub.docker.com/_/gcc/
image: gcc
build:
stage: build
# instead of calling g++ directly you can also use some build toolkit like make
# install the necessary build tools when needed
2019-07-07 11:18:12 +05:30
# before_script:
# - apt update && apt -y install make autoconf
script:
2016-09-13 17:45:13 +05:30
- g++ helloworld.cpp -o mybinary
artifacts:
paths:
- mybinary
2019-09-04 21:01:54 +05:30
# depending on your build setup it's most likely a good idea to cache outputs to reduce the build time
# cache:
# paths:
# - "*.o"
2016-09-13 17:45:13 +05:30
# run tests using the binary built before
test:
stage: test
script:
- ./runmytests.sh