From d4f261272f1f9886b05b3defe2ecb4fb4cb3e9f7 Mon Sep 17 00:00:00 2001 From: "Erik A. Brandstadmoen" Date: Mon, 26 Feb 2024 08:31:07 +0100 Subject: [PATCH] WIP --- .github/workflows/build.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d6a6807c..24a9340d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -340,9 +340,14 @@ jobs: uses: actions/setup-dotnet@v4 with: dotnet-version: 8.0.x + + - name: chmod u+x + run: chmod u+x $GrateExecutablePath + if: ${{ matrix.arch == 'linux' }} + env: + GrateExecutablePath: ${{ github.workspace }}/executables/${{ matrix.arch }}-x64/grate - name: Test run: | - chmod u+x $GrateExecutablePath dotnet test \ unittests/CommandLine/${{ matrix.category }} \ --logger:"xunit;LogFilePath=/tmp/test-results/${{ matrix.category }}.xml" -- \