123456789101112131415161718192021222324252627282930313233343536373839404142 |
- default:
- image: registry.gitlab.com/spritely/guile-hoot:latest
- stages:
- - build
- - test
- build:
- stage: build
- tags:
- - saas-linux-medium-amd64
- script:
- - ./bootstrap.sh
- - ./configure
- - make -j$(nproc)
- artifacts:
- untracked: true
- test:
- stage: test
- tags:
- - saas-linux-medium-amd64
- script:
- - make check -j$(nproc)
- distcheck:
- stage: test
- tags:
- - saas-linux-medium-amd64
- script:
- - make distcheck -j$(nproc)
- size-metrics:
- stage: test
- tags:
- - saas-linux-medium-amd64
- script:
- - ./pre-inst-env guile size-metrics.scm > metrics.txt
- artifacts:
- reports:
- metrics: metrics.txt
|