From 184daf79abc8bdf4a20554879395a7597b2559cc Mon Sep 17 00:00:00 2001 From: Harrand Date: Sat, 18 May 2024 17:56:30 +0100 Subject: [PATCH] [ci] so it turns out uploading/downloading artifacts strips all file permissions, so before running runtime tests you need to chmod +x the compiler. --- .github/actions/run_tests/action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/actions/run_tests/action.yml b/.github/actions/run_tests/action.yml index 3a5ec91..634787b 100644 --- a/.github/actions/run_tests/action.yml +++ b/.github/actions/run_tests/action.yml @@ -21,4 +21,6 @@ runs: - name: scratchpad.psy shell: bash - run: ./psyc -v ./samples/scratchpad.psy --dump-ast --dump-ir \ No newline at end of file + run: | + sudo chmod +x psyc + ./psyc -v ./samples/scratchpad.psy --dump-ast --dump-ir \ No newline at end of file