diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6632f89..457e969 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,8 +20,10 @@ build: script: - make build - make image + - mv bin ciel-v0 artifacts: - name: "ciel" + name: "ciel-v0" paths: - - bin/ + - ciel-v0/ + - ciel diff --git a/build-image.lisp b/build-image.lisp index bd292d1..48b7c1d 100644 --- a/build-image.lisp +++ b/build-image.lisp @@ -1,6 +1,7 @@ (in-package :cl-user) +(ql:quickload "cl+ssl") (asdf:load-asd "ciel.asd") (ql:quickload "swank") (ql:quickload "ciel") diff --git a/ciel.asd b/ciel.asd index 4f14ef3..33ed5a2 100644 --- a/ciel.asd +++ b/ciel.asd @@ -149,7 +149,7 @@ :entry-point "sbcli::repl") ;; Don't ship libssl, rely on the target OS'. -;; Needs to require or quickload cl+ssl before we can compile and load this .asd file? :S +;; XXX: we need to load cl+ssl before we can compile and load this .asd file :/ #+linux (deploy:define-library cl+ssl::libssl :dont-deploy T) #+linux (deploy:define-library cl+ssl::libcrypto :dont-deploy T)