diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2022-10-28 00:37:21 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2022-10-28 00:37:21 -0700 |
commit | cfb1b59eec918f3da266ca7b6fe4116e98c15f5a (patch) | |
tree | bddd52947530c0bf41d360b8a50f019af57cb28a | |
parent | 7c4671f24e7e380aad57916818148a8b441db88d (diff) | |
download | adenosine-cfb1b59eec918f3da266ca7b6fe4116e98c15f5a.tar.gz adenosine-cfb1b59eec918f3da266ca7b6fe4116e98c15f5a.zip |
CI: start a gitlab CI file, just tests
-rw-r--r-- | .gitlab-ci.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..270e87f --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,13 @@ +stages: + - test + +rust-latest: + stage: test + image: rust:1.59-bullseye + before_script: + - apt update -qy + # these are for tauri dev + - apt install -y libwebkit2gtk-4.0-dev build-essential curl wget libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev + script: + - make test + |