From c4602b9d4e2156da7182da40ea5e3015aab424e6 Mon Sep 17 00:00:00 2001 From: Lulzette Date: Tue, 19 Oct 2021 02:26:08 +0000 Subject: [PATCH] change runner --- .drone.yml | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index b720960..f5b9966 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,10 +1,20 @@ kind: pipeline -type: docker +type: exec name: default +platform: + os: linux + arch: amd64 + steps: - - name: greets - image: python + - name: build commands: - docker build . + - name: test + commands: + - docker-compose up --build --abort-on-container-exit + - name: run + commands: + - docker-compose up --build -d +