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:
parent
c5c2b6f518
commit
e289f88187
1 changed files with 20 additions and 0 deletions
20
.gitlab-ci.yml
Normal file
20
.gitlab-ci.yml
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue