From 4a37f03abba1056d5f96c330d87c67f0613344e4 Mon Sep 17 00:00:00 2001 From: jake Date: Sat, 7 Sep 2019 14:58:51 -0700 Subject: [PATCH 1/5] drone.yml --- .drone.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..9e9d3b3 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,13 @@ +--- +kind: pipeline +type: exec +name: default + +platform: + os: linux + arch: amd64 + +steps: +- name: cargo test + commands: + - cargo test From 2ce7f85e1e913222657f780911f84b0e54ad668c Mon Sep 17 00:00:00 2001 From: jake Date: Sat, 7 Sep 2019 19:31:48 -0700 Subject: [PATCH 2/5] set nightly in ci config --- .drone.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.drone.yml b/.drone.yml index 9e9d3b3..43f0981 100644 --- a/.drone.yml +++ b/.drone.yml @@ -10,4 +10,5 @@ platform: steps: - name: cargo test commands: + - rustup default nightly - cargo test From 3fcee7f67eceb6d0931b64ec56b0c63350415f50 Mon Sep 17 00:00:00 2001 From: jake Date: Sat, 7 Sep 2019 19:34:30 -0700 Subject: [PATCH 3/5] separate build and test ci tasks --- .drone.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.drone.yml b/.drone.yml index 43f0981..a2be68b 100644 --- a/.drone.yml +++ b/.drone.yml @@ -11,4 +11,5 @@ steps: - name: cargo test commands: - rustup default nightly + - cargo build - cargo test From 5923648df0a31dab0fa00e9732b943b099ae05cc Mon Sep 17 00:00:00 2001 From: jake Date: Sat, 7 Sep 2019 19:46:10 -0700 Subject: [PATCH 4/5] separate build and test ci tasks for real this time --- .drone.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index a2be68b..d513f95 100644 --- a/.drone.yml +++ b/.drone.yml @@ -8,8 +8,12 @@ platform: arch: amd64 steps: -- name: cargo test +- name: get rust commands: - rustup default nightly +- name: cargo build + commands: - cargo build +- name: cargo test + commands: - cargo test From ca37115985f0a3900438dbce0c73a5b6de2dd7ef Mon Sep 17 00:00:00 2001 From: jake Date: Sat, 7 Sep 2019 19:56:52 -0700 Subject: [PATCH 5/5] name ci build --- .drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index d513f95..6b6e7eb 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,7 +1,7 @@ --- kind: pipeline type: exec -name: default +name: test libpso platform: os: linux