From cfb1b59eec918f3da266ca7b6fe4116e98c15f5a Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Fri, 28 Oct 2022 00:37:21 -0700 Subject: CI: start a gitlab CI file, just tests --- .gitlab-ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitlab-ci.yml 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 + -- cgit v1.2.3