From c562cce807dfdc053ed7e092217329982c5ed849 Mon Sep 17 00:00:00 2001 From: Paul Reeves Date: Sat, 13 May 2023 09:46:43 +0200 Subject: [PATCH] Initial commit of drone.yml using tfm's make --- .drone.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..b603338 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,34 @@ +--- +kind: pipeline +name: build-linux + +platform: + arch: amd64 + +environment: + MYCC: "gcc" + SHARED: "-f makefile.shared" + +steps: +- name: build + image: gcc + commands: + - ${MYCC}" make ${SHARED} test_standalone >test_gcc_1.txt 2>test_gcc_2.txt && ./test >test_std.txt 2>test_err.txt" + +#--- +#kind: pipeline +#name: build-windows + +#platform: + #arch: amd64 + +#environment: + #MYCC: gcc" SHARED="-f makefile.shared" + +#steps: +#- name: test + #image: gcc + #commands: + #- ${MYCC}" make ${SHARED} test_standalone >test_gcc_1.txt 2>test_gcc_2.txt && ./test >test_std.txt 2>test_err.txt" + +...