diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-08-26 17:50:40 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-08-26 17:50:40 -0700 |
commit | 837e726d279c0b82418d0bd465657e0ea8de2b15 (patch) | |
tree | 5a5008b8a4f315699036624579e2ed7f6670cb4a | |
parent | 5536b8e814103487cc2d83ca82a44cd0bc19227d (diff) | |
download | es-public-proxy-837e726d279c0b82418d0bd465657e0ea8de2b15.tar.gz es-public-proxy-837e726d279c0b82418d0bd465657e0ea8de2b15.zip |
basic gitlab-ci file
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | .gitlab-ci.yml | 6 |
2 files changed, 7 insertions, 0 deletions
@@ -21,3 +21,4 @@ src/build/ # Don't ignore this file itself !.gitignore !.dockerignore +!.gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..bd95ff3 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,6 @@ +image: "rust:stable" +test:cargo: + script: + # Print version info for debugging + - rustc --version && cargo --version + - make test |