From d8ab39f6467a4a73b9e178e932ece0260da8d3de Mon Sep 17 00:00:00 2001 From: Joe George Date: Fri, 26 Apr 2024 09:16:05 -0400 Subject: [PATCH] Debugging --- .github/actions/setup-dependencies/action.yml | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/.github/actions/setup-dependencies/action.yml b/.github/actions/setup-dependencies/action.yml index 5546ece6795..0d45f53a205 100644 --- a/.github/actions/setup-dependencies/action.yml +++ b/.github/actions/setup-dependencies/action.yml @@ -13,9 +13,7 @@ inputs: runs: using: "composite" steps: - # - # Linux and macOS - # + # ———— Linux and macOS ———— # - name: Set Linux MAKEFLAGS run: echo "MAKEFLAGS=-j$(nproc) V=1" >> $GITHUB_ENV shell: bash @@ -83,9 +81,7 @@ runs: shell: bash if: runner.os == 'Linux' - # - # Windows - # + # ———— Windows ———— # - name: Setup MSBuild uses: microsoft/setup-msbuild@v2 with: @@ -115,9 +111,7 @@ runs: shell: powershell if: runner.os == 'Windows' - # - # MATLAB - # + # ———— MATLAB ———— # - name: Setup MATLAB id: setup-matlab uses: matlab-actions/setup-matlab@v2 @@ -127,13 +121,18 @@ runs: - name: Set MATLAB_HOME run: | - sudo apt install -y libgtk2.0-0 + # needed for MATLAB R2024a + # sudo apt install -y libgtk2.0-0 echo "MATLAB_HOME=${{ steps.setup-matlab.outputs.matlabroot }}" >> $GITHUB_ENV shell: bash if: runner.os == 'Linux' && matrix.config == 'matlab' - name: Set MATLAB_HOME run: | + where matlab + where git + where echo + dir "${{ steps.setup-matlab.outputs.matlabroot }}\bin" echo "MATLAB_HOME=${{ steps.setup-matlab.outputs.matlabroot }}" >> $env:GITHUB_ENV shell: powershell if: runner.os == 'Windows' && matrix.config == 'matlab'