From 68ab3726c31ca925b8d299962e3f143db8fb26fa Mon Sep 17 00:00:00 2001 From: Jens True Date: Wed, 22 Jun 2022 06:25:17 +0000 Subject: [PATCH] Woodpecker port --- .drone.yml | 43 ------------------------------------------- .woodpecker.yml | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+), 43 deletions(-) delete mode 100644 .drone.yml create mode 100644 .woodpecker.yml diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index 75728d7..0000000 --- a/.drone.yml +++ /dev/null @@ -1,43 +0,0 @@ -kind: pipeline -name: default -steps: - - name: build - image: gcc - commands: - - apt-get -y update - - apt-get -y install libusb-1.0 - - make - - - name: check - image: neszt/cppcheck-docker - commands: - - cppcheck *.c - - - name: docs - image: corentinaltepe/doxygen - commands: - - doxygen - - - name: release-dev - image: alpine - volumes: - - name: output - path: /output - commands: - - mkdir -p /output/dev/docs/ - - cp -r docs/html/* /output/dev/docs/ - - - name: release-tag - image: alpine - volumes: - - name: output - path: /output - commands: - - cp -r /output/dev/ /output/${DRONE_SEMVER}/ - when: - event: - - tag -volumes: -- name: output - host: - path: /home/jct/apps/http/share.jcktrue.dk/${DRONE_REPO_NAME}/ \ No newline at end of file diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..ca7da35 --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,19 @@ +kind: pipeline +name: default +steps: + - name: build + image: gcc + commands: + - apt-get -y update + - apt-get -y install libusb-1.0 + - make + + - name: check + image: neszt/cppcheck-docker + commands: + - cppcheck *.c + + - name: docs + image: corentinaltepe/doxygen + commands: + - doxygen