From 139a40bdf3d9626bd874c51409db6118d78571f4 Mon Sep 17 00:00:00 2001 From: MrArmonius Date: Fri, 9 Jul 2021 15:37:07 +0200 Subject: [PATCH] Ajout d'une step pour lancer le test integration --- .drone.yml | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/.drone.yml b/.drone.yml index 9eea880..b83a87d 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,13 +1,24 @@ --- -pipeline: - build: - image: golang:stretch - commands: - - go get -d -v - - go build -v +kind: pipeline +name: bottin + +steps: +- name: build + image: golang:stretch + commands: + - go get -d -v + - go build -v + - cd test_automatic + - go get -d -v + - go build -v + +- name: test_bottin + image: consul:latest + commands: + - ./test_automatic/start_test.sh --- kind: signature -hmac: 8f49fdf0e4abb0790827eed7cac8eedd5e11705d1fa01954a84929933eb7b254 +hmac: 939fca00ff84d40e9364cd936c18c40c5becafa05e0f887bc04cf6336a4913a2 ...