summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorJonathan de Jong <jonathandejong02@gmail.com>2021-03-13 19:00:13 +0000
committerJonathan de Jong <jonathan@automatia.nl>2021-03-13 20:18:56 +0100
commitf79053484bfea3d3bb0b156972d9c77df6a5251c (patch)
tree7117935307134ba7ed344f3767e1bcf31fd4de11 /.gitlab-ci.yml
parente785ff6f56040c15e81f61bd758dfceb939394ef (diff)
downloadconduit-f79053484bfea3d3bb0b156972d9c77df6a5251c.zip
Add .gitlab-ci.yml
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..10ca273
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -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