From a5eccb1ee4b3ef019ad9d6806f3a8aed8090ac3d Mon Sep 17 00:00:00 2001 From: Adrian Del Grosso <10929341+ad3154@users.noreply.github.com> Date: Sat, 12 Nov 2022 14:49:30 -0700 Subject: [PATCH] [Meta]: Added a gitlab-ci file for anyone like me who mirrors to a GitLab instance Now gitlab will also build and pack the code automatically if you're into that (and by that I mean GitLab) --- .gitlab-ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 00000000..95df9b51 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,10 @@ +build-project: + stage : build + script: + - cmake -S . -B build + - cmake --build build + - cd build + - cpack -G DEB + artifacts: + paths: + - ./build/isobus-*-Linux.deb \ No newline at end of file