From 5e6ed0f6682a4cb71695608c589b53107022835e Mon Sep 17 00:00:00 2001 From: belliash Date: Fri, 19 Jun 2020 23:12:25 +0200 Subject: [PATCH] New pipeline for new CI/CD. --- .build.yml | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/.build.yml b/.build.yml index edccfc6..02eef2b 100644 --- a/.build.yml +++ b/.build.yml @@ -1,10 +1,14 @@ -pipeline: - step: compile - commands: - - make release - step: install - commands: - - make install - step: test - commands: - - make tests +kind: pipeline +type: exec +name: AerScript Build + +steps: +- name: compile + commands: + - make release +- name: install + commands: + - make install +- name: test + commands: + - make tests