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" + +...