From c95fc7a9a67cedbef65d563d729abd13202c64aa Mon Sep 17 00:00:00 2001 From: Paul Reeves Date: Sat, 13 May 2023 10:38:33 +0200 Subject: [PATCH] Try again --- .drone.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 1c4a0e5..f624ea8 100644 --- a/.drone.yml +++ b/.drone.yml @@ -5,9 +5,9 @@ name: build-linux platform: arch: amd64 -environment: +#environment: MYCC: gcc - SHARED: "-f makefile.shared" + #SHARED: "-f makefile.shared" imagedefs: - &anchor_compiler_image @@ -23,7 +23,8 @@ steps: path: /tmp/cache commands: - - ${{MYCC}}" make ${{SHARED}} test_standalone >test_gcc_1.txt 2>test_gcc_2.txt + - export CC=${MYCC} + - make -f makefile.shared test_standalone >test_gcc_1.txt 2>test_gcc_2.txt - ./test >test_std.txt 2>test_err.txt"