From 8c34084366a6703a0bccb0a1c9f58c5f26903c6d Mon Sep 17 00:00:00 2001 From: arty Date: Fri, 17 Nov 2023 13:03:33 -0800 Subject: [PATCH] ci --- .github/workflows/build-test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index c4028515..c5a5ef7d 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -156,7 +156,9 @@ jobs: python ./resources/tests/lib/steprun.py ./resources/tests/mandelbrot/mandelbrot.clvm.hex resources/tests/mandelbrot/mand_args.txt ./resources/tests/mandelbrot/mandelbrot.sym > mand_output.txt # git diff invoked this way returns 0 (as /bin/true) if there is no difference or 1 if there is. git diff --no-index -s --quiet -- mand_output.txt ./resources/tests/mandelbrot/mand_test.txt - rm --force mand_output.txt + # Remove file in a compatible way using git as a general tool + git add mand_output.txt + git rm --force mand_output.txt - name: Verify recompilation of old sources match with new compiler