Skip to content
Snippets Groups Projects
.gitlab-ci.yml 1.06 KiB
Newer Older
Ciaron Linstead's avatar
Ciaron Linstead committed
#test:
#  script:
#  - hostname
#  tags:
#  - 'remote1'
#  except:
#  - tags
#  type: build
#
# 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:
Ciaron Linstead's avatar
Ciaron Linstead committed
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/C++.gitlab-ci.yml
Ciaron Linstead's avatar
Ciaron Linstead committed
# use the official gcc image, based on debian
# can use verions as well, like gcc:5.2
# see https://hub.docker.com/_/gcc/
Ciaron Linstead's avatar
Ciaron Linstead committed
image: gcc
Ciaron Linstead's avatar
Ciaron Linstead committed
build:
  stage: build
  # instead of calling g++ directly you can also use some build toolkit like make
  # install the necessary build tools when needed
  # before_script:
  #   - apt update && apt -y install make autoconf
Ciaron Linstead's avatar
Ciaron Linstead committed
  script:
Ciaron Linstead's avatar
Ciaron Linstead committed
    - g++ helloworld.cpp -o mybinary
Ciaron Linstead's avatar
Ciaron Linstead committed
  artifacts:
    paths:
Ciaron Linstead's avatar
Ciaron Linstead committed
      - mybinary
      # depending on your build setup it's most likely a good idea to cache outputs to reduce the build time
      # cache:
      #   paths:
      #     - "*.o"
Ciaron Linstead's avatar
Ciaron Linstead committed
# run tests using the binary built before
test:
  stage: test
Ciaron Linstead's avatar
Ciaron Linstead committed
  script:
Ciaron Linstead's avatar
Ciaron Linstead committed
    - ./runmytests.sh