From 4929b3f201ba3aa78e2fe3a9b596bf7ddee0d059 Mon Sep 17 00:00:00 2001 From: Lucas Schwiderski Date: Thu, 23 Mar 2023 19:17:07 +0100 Subject: [PATCH] feat(ci): Add basic pipeline --- .ci/pipelines/check.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .ci/pipelines/check.yml diff --git a/.ci/pipelines/check.yml b/.ci/pipelines/check.yml new file mode 100644 index 0000000..4d350ac --- /dev/null +++ b/.ci/pipelines/check.yml @@ -0,0 +1,28 @@ +--- + +# The actual CI pipeline that is run per branch + +resources: +- name: repo + type: git + source: + uri: https://git.sclu1034.dev/bitsquid_dt/dtmt + branch: ((branch)) + +jobs: +- name: build-msvc + plan: + - get: repo + trigger: true + - task: build + file: repo/.ci/tasks/build.yml + vars: + target: msvc +- name: build-linux + plan: + - get: repo + trigger: true + - task: build + file: repo/.ci/tasks/build.yml + vars: + target: linux