From 2963c2a74019230cbed1c02db4b5ed2da2105e83 Mon Sep 17 00:00:00 2001 From: Sean Sube Date: Sun, 25 Feb 2024 07:48:41 -0600 Subject: [PATCH] add some test pipelines --- .woodpecker/.build-api-3-10.yaml | 8 ++++++++ .woodpecker/.build-gui-bundle.yaml | 6 ++++++ 2 files changed, 14 insertions(+) create mode 100644 .woodpecker/.build-api-3-10.yaml create mode 100644 .woodpecker/.build-gui-bundle.yaml diff --git a/.woodpecker/.build-api-3-10.yaml b/.woodpecker/.build-api-3-10.yaml new file mode 100644 index 00000000..c2109bf0 --- /dev/null +++ b/.woodpecker/.build-api-3-10.yaml @@ -0,0 +1,8 @@ +steps: + - name: build + image: docker.io/python:3.10 + commands: + - apt-get -y update && apt-get -y install python3-opencv + - cd api + - ${CI_PROJECT_DIR}/common/scripts/make-venv.sh + - make ci \ No newline at end of file diff --git a/.woodpecker/.build-gui-bundle.yaml b/.woodpecker/.build-gui-bundle.yaml new file mode 100644 index 00000000..ff72f0ca --- /dev/null +++ b/.woodpecker/.build-gui-bundle.yaml @@ -0,0 +1,6 @@ +steps: + - name: build + image: docker.io/node:18 + commands: + - cd gui + - make ci \ No newline at end of file