1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-05 19:50:23 +02:00

Add .gitlab-ci.yml

This commit is contained in:
Andy Wingo 2019-03-26 11:25:49 +00:00
parent c5c2b6f518
commit e289f88187

20
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,20 @@
# 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
build:
stage: build
before_script:
- apt update && apt -y install make
script:
- make -C tests
cache:
paths:
- "tests/*.o"
- "tests/test-*"
test:
stage: test
script:
- make -C tests check