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

33 lines
989 B
YAML
Raw Normal View History

2021-09-30 23:02:18 +05:30
# To contribute improvements to CI/CD templates, please follow the Development guide at:
# https://docs.gitlab.com/ee/development/cicd/templates.html
# This specific template is located at:
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/C++.gitlab-ci.yml
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/
2021-09-30 23:02:18 +05:30
2016-09-13 17:45:13 +05:30
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