From 7f574bf4e683faeb3925d47d85ae4076a264eb22 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Sat, 18 Mar 2023 21:00:06 +0000 Subject: [PATCH] ci: woodpecker: debug clone --- .woodpecker.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.woodpecker.yml b/.woodpecker.yml index 05d3de7..50a83fc 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,5 +1,20 @@ skip_clone: true pipeline: + build: + image: debian:stable-backports + commands: + - apt update + - apt install -y inetutils-ping wget git + - ping -c 4 git.belanyi.fr + - wget git.belanyi.fr + - mkdir foobar + - cd foobar + - git init -b main + - git remote add origin https://git.belanyi.fr/ambroisie/test-drone.git + - "git fetch --no-tags --depth=1 --filter=tree:0 origin +refs/heads/main:" + - ls -la + - sleep 9999999 + test: image: hello-world