From d4af7cd4e20579ede42c7abb544c65eac16360f8 Mon Sep 17 00:00:00 2001 From: Kevin Daudt Date: Mon, 27 Sep 2021 20:37:08 +0200 Subject: [PATCH] ci: add job to run tests This uses the alpinelinux/abuild-ci image to run the test suite, which has all the required dependencies already installed. --- .gitlab-ci.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..e9e2456 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,11 @@ +stages: + - verify + +tests: + image: + name: alpinelinux/abuild-ci + stage: verify + script: [pwd] + tags: + - docker-alpine + - x86_64