Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
cl-docker-images
cl-docker-images.common-lisp.dev
Commits
7a65fccd
Commit
7a65fccd
authored
Jan 22, 2021
by
Eric Timmons
Browse files
Add use cases
parent
1d700c88
Changes
1
Hide whitespace changes
Inline
Side-by-side
use-cases.page
0 → 100644
View file @
7a65fccd
;;;;;
title: Use Cases
format: md
URL: use-cases.html
;;;;;
# CI
Docker images are widely used for CI purposes as they tend to boot faster and
use less disk space than comparable VMs.
## Gitlab CI
Here is an example `.gitlab-ci.yml` file to use these images with Gitlab
CI. For a moderately more complex example, please
see
[ASDF's CI pipelines](https://gitlab.common-lisp.net/asdf/asdf/-/blob/master/gitlab-ci.yml).
```yaml
.run tests:
image: clfoundation/$LISP:latest
script:
- ./run-all-my-tests.sh
ABCL tests:
extends: .run tests
variables:
LISP: abcl
CCL tests:
extends: .run tests
variables:
LISP: ccl
ECL tests:
extends: .run tests
variables:
LISP: ecl
SBCL tests:
extends: .run tests
variables:
LISP: sbcl
```
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment