From 0b0cfbb5de1a7b565ba0e3464b5ba93199b4707c Mon Sep 17 00:00:00 2001 From: ahiuchingau <20424172+ahiuchingau@users.noreply.github.com> Date: Fri, 12 Jan 2024 14:43:07 -0500 Subject: [PATCH] oh damn --- .github/actions/cross-compile-check/action.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/actions/cross-compile-check/action.yaml b/.github/actions/cross-compile-check/action.yaml index 672f00d6f..ee643f836 100644 --- a/.github/actions/cross-compile-check/action.yaml +++ b/.github/actions/cross-compile-check/action.yaml @@ -6,16 +6,20 @@ runs: steps: - name: Configure G4 run: cmake --preset=cross . + shell: bash working-directory: ${{ env.DEFAULT_DIRECTORY }} - name: Format run: cmake --build ./build-cross --target ${{ env.TARGET }}-format-ci + shell: bash working-directory: ${{ env.DEFAULT_DIRECTORY }} - name: Build g4 run: cmake --build --preset=${{ env.TARGET }} + shell: bash working-directory: ${{ env.DEFAULT_DIRECTORY }} - name: Lint run: cmake --build ./build-cross --target ${{ env.TARGET }}-lint + shell: bash working-directory: ${{ env.DEFAULT_DIRECTORY }}