aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2022-10-28 00:37:21 -0700
committerBryan Newbold <bnewbold@robocracy.org>2022-10-28 00:37:21 -0700
commitcfb1b59eec918f3da266ca7b6fe4116e98c15f5a (patch)
treebddd52947530c0bf41d360b8a50f019af57cb28a /.gitlab-ci.yml
parent7c4671f24e7e380aad57916818148a8b441db88d (diff)
downloadadenosine-cfb1b59eec918f3da266ca7b6fe4116e98c15f5a.tar.gz
adenosine-cfb1b59eec918f3da266ca7b6fe4116e98c15f5a.zip
CI: start a gitlab CI file, just tests
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..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
+