mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2025-12-06 02:40:26 -08:00
Add .gitlab-ci.yml
This commit is contained in:
parent
625f76b752
commit
4ea23e1ffb
1 changed files with 18 additions and 0 deletions
18
.gitlab-ci.yml
Normal file
18
.gitlab-ci.yml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
build:
|
||||
stage: build
|
||||
# instead of calling g++ directly you can also use some build toolkit like make
|
||||
# install the necessary build tools when needed
|
||||
# before_script:
|
||||
# - apt update && apt -y install make autoconf
|
||||
script:
|
||||
- ./configure
|
||||
- make
|
||||
- make install
|
||||
|
||||
# run tests using the binary built before
|
||||
test:
|
||||
stage: test
|
||||
script:
|
||||
- ./configure
|
||||
- cd ./build/tests/
|
||||
- make
|
||||
Loading…
Add table
Add a link
Reference in a new issue