mirror of
https://gitlab.com/famedly/conduit.git
synced 2025-01-19 10:42:12 +01:00
Merge branch 'add-ci' into 'master'
Add basic CI See merge request famedly/conduit!41
This commit is contained in:
commit
1937cf554f
1 changed files with 13 additions and 0 deletions
13
.gitlab-ci.yml
Normal file
13
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
image: "rust:latest"
|
||||||
|
|
||||||
|
variables:
|
||||||
|
GIT_SUBMODULE_STRATEGY: recursive
|
||||||
|
|
||||||
|
before_script:
|
||||||
|
- apt-get update -yqq
|
||||||
|
- apt-get install -yqq --no-install-recommends build-essential libssl-dev pkg-config
|
||||||
|
|
||||||
|
test:cargo:
|
||||||
|
script:
|
||||||
|
- rustc --version && cargo --version # Print version info for debugging
|
||||||
|
- cargo test --workspace --verbose --locked
|
Loading…
Add table
Reference in a new issue