tomsfastmath/.drone.yml

35 lines
585 B
YAML

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