Files
noggit-red/.gitlab-ci.yml
2021-11-04 21:26:49 +00:00

30 lines
785 B
YAML

# This file is a template, and might need editing before it works on your project.
# 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
# use the official gcc image, based on debian
# can use verions as well, like gcc:5.2
# see https://hub.docker.com/_/gcc/
image: $CI_BUILD_IMAGE
build:
stage: build
script:
- gcc -dumpversion
- g++ --version
- cmake -version
- mkdir build
- cd build
- cmake .. -D FASTNOICE2_NOISETOOL=Flase
- make
artifacts:
paths:
- build
only:
- web
allow_failure: false