Add initial bitbucket pipeline yaml file - csvtofsv - Convert CSV to FSV (`fs' … | |
hg clone https://bitbucket.org/iamleot/csvtofsv | |
Log | |
Files | |
Refs | |
README | |
--- | |
changeset 4aef32e4ba7787c7831ac28614b99535c8609f93 | |
parent 017ecd56401099a5229e4b0c79211cdcf060e3d8 | |
Author: Leonardo Taccari <[email protected]> | |
Date: Mon, 1 Jul 2019 02:37:12 | |
Add initial bitbucket pipeline yaml file | |
(Completely untested!) | |
Diffstat: | |
bitbucket-pipelines.yml | 16 ++++++++++++++++ | |
1 files changed, 16 insertions(+), 0 deletions(-) | |
--- | |
diff -r 017ecd564010 -r 4aef32e4ba77 bitbucket-pipelines.yml | |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 | |
+++ b/bitbucket-pipelines.yml Mon Jul 01 02:37:12 2019 +0200 | |
@@ -0,0 +1,16 @@ | |
+image: gcc:7 | |
+ | |
+pipelines: | |
+ default: | |
+ - step: | |
+ name: Install NetBSD make | |
+ script: | |
+ - apt-get update && apt-get install -y bmake | |
+ - step: | |
+ name: Build | |
+ script: | |
+ - bmake | |
+ - step: | |
+ name: Test | |
+ script: | |
+ - bmake check |