Initial commit of drone.yml using tfm's make
This commit is contained in:
parent
e0be67f243
commit
c562cce807
34
.drone.yml
Normal file
34
.drone.yml
Normal 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"
|
||||||
|
|
||||||
|
...
|
Loading…
Reference in New Issue
Block a user