Initial commit of drone.yml using tfm's make

This commit is contained in:
Paul Reeves 2023-05-13 09:46:43 +02:00
parent e0be67f243
commit c562cce807

34
.drone.yml Normal file
View File

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