22 lines
805 B
YAML
22 lines
805 B
YAML
before_script:
|
|
- apt-get update -y
|
|
- apt-get install -y locales
|
|
- echo "es_ES.UTF-8 UTF-8" >> /etc/locale.gen
|
|
- locale-gen
|
|
- export LC_ALL="es_ES.utf8"
|
|
- apt-get install sbcl tree -y
|
|
- wget "https://beta.quicklisp.org/quicklisp.lisp"
|
|
- sbcl --load quicklisp.lisp --eval "(quicklisp-quickstart:install)" --eval "(quit)"
|
|
- echo '#-quicklisp
|
|
(let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp"
|
|
(user-homedir-pathname))))
|
|
(when (probe-file quicklisp-init)
|
|
(load quicklisp-init)))' >> "${HOME}/.sbclrc"
|
|
- sbcl --load install.lisp
|
|
- mkdir "${HOME}/common-lisp"
|
|
- ln -s `pwd` "${HOME}/common-lisp/lisperes"
|
|
|
|
run-tests:
|
|
stage: test
|
|
script:
|
|
- "bin/run-tests.sh"
|