... | ... | @@ -16,7 +16,7 @@ cache: |
|
|
paths:
|
|
|
- ccache
|
|
|
```
|
|
|
The example jobs combine the building and testing into a single stage because each are so simple. If you have more complicated builds -- or want to test against more current releases of software dependencies -- it may make sense to split the pipeline into multiple stages [using build artifacts](using-build-artifacts).
|
|
|
The [example pipeline](https://git.ligo.org/lscsoft/example-ci-project/pipelines/3086) combine the building and testing into a single stage because each are so simple. If you have more complicated builds -- or want to test against more current releases of software dependencies -- it may make sense to split the pipeline into multiple stages [using build artifacts](using-build-artifacts).
|
|
|
```yaml
|
|
|
# test against GCC released in Debian 8 "jessie"
|
|
|
jessie:
|
... | ... | |