Files
Olaf Seibert 0e54092d45 Merge commit 'c311f6a175fd52da171795bc093762f4eba4c136' into macro11-v0.7.2
Update to latest released version of macro-11.

Command run: git subtree pull --prefix=crossassemblers/macro11 ../macro11 macro11-v0.7.2
(should be equivalent to git subtree pull --prefix=crossassemblers/macro11 git://gitlab.com/Rhialto/macro11.git macro11-v0.7.2)
2022-06-08 20:52:56 +02:00

33 lines
727 B
YAML

# Minimized from https://about.gitlab.com/2016/10/12/automated-debian-package-build-with-gitlab-ci/
# https://github.com/gitlabhq/gitlabhq/blob/master/vendor/gitlab-ci-yml/C%2B%2B.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: gcc
before_script:
- apt-get update
# Defines stages which are to be executed
stages:
- build-gcc
- build-clang
# Stage "build"
run-build-gcc:
stage: build-gcc
script:
- apt-get install -y gcc
- make
- cd tests && ./RunTests
# Stage "build-clang"
run-build-clang:
stage: build-clang
script:
- apt-get install -y clang
- CC=clang make
- cd tests && ./RunTests