From d76f4620b4747cd11dcd4c99c71d25f31f10e895 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=8E=A0=E1=8E=A1=2E=20=D0=85=CF=B5rg=CF=B5=20=D1=B4ictor?= Date: Sat, 1 Feb 2020 05:48:00 +0000 Subject: [PATCH] Update Semaphore configuration --- .semaphore/semaphore.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .semaphore/semaphore.yml diff --git a/.semaphore/semaphore.yml b/.semaphore/semaphore.yml new file mode 100644 index 00000000..0a7b026a --- /dev/null +++ b/.semaphore/semaphore.yml @@ -0,0 +1,31 @@ +version: v1.0 +name: First pipeline +agent: + machine: + type: e1-standard-2 + os_image: ubuntu1804 +blocks: + - name: Test + task: + prologue: + commands: + - checkout + jobs: + - name: 'Job #1' + commands: + - echo A + - name: Unit tests + task: + prologue: + commands: + - checkout + jobs: + - name: Unit tests 1/3 + commands: + - echo "run 1/3" + - name: Unit tests 2/3 + commands: + - echo "run 2/3" + - name: Unit tests 3/3 + commands: + - echo "run 3/3"