From 5d5cd7d3b1526796981d72b2683f308aeb7c2965 Mon Sep 17 00:00:00 2001 From: "Guillaume \"B.B.\" Van Hemmen" Date: Sun, 23 Apr 2023 17:15:35 +0200 Subject: [PATCH] migrate CI to forgejo --- .gitlab-ci.yml => .gitlab-ci.yml.old | 0 .woodpecker.yml | 18 ++++++++++++++++++ 2 files changed, 18 insertions(+) rename .gitlab-ci.yml => .gitlab-ci.yml.old (100%) create mode 100644 .woodpecker.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml.old similarity index 100% rename from .gitlab-ci.yml rename to .gitlab-ci.yml.old diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..bb51948 --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,18 @@ +pipeline: + docker-master: + group: docker + image: docker:stable + environment: + - DOCKER_HOST=tcp://docker:2375 + commands: + - docker --tls=false ps + when: + event: + - push + branch: 'master' + + services: + docker: + image: docker:dind + command: [ "--storage-driver=vfs", "--tls=false" ] + privileged: true \ No newline at end of file