# This file is a template, and might need editing before it works on your project. # see https://docs.gitlab.com/ce/ci/yaml/README.html for all available options # you can delete this line if you're not using Docker image: debian before_script: - apt-get update --yes build: stage: build script: - apt-get install --yes make gcc g++ clang git - CC=gcc CXX=g++ ./run-tests.sh - CC=clang CXX=clang++ ./run-tests.sh pages: stage: build script: - mkdir .public - cp -r *.html *.css *.png .public - mv .public/README.html .public/index.html - mv .public public artifacts: paths: - public only: - master