Index: .github/workflows/build.yml =================================================================== diff -u -re372b8128836d2433eb6f92c6c274ea47e917116 -r4f7b34fe299e8ade868c6736589f01d25997ba9d --- .github/workflows/build.yml (.../build.yml) (revision e372b8128836d2433eb6f92c6c274ea47e917116) +++ .github/workflows/build.yml (.../build.yml) (revision 4f7b34fe299e8ade868c6736589f01d25997ba9d) @@ -53,7 +53,7 @@ shell: bash steps: - name: Install Linux dependencies (debugging) - if: ${{ env.ACT }} && startsWith(matrix.os, 'ubuntu') + if: ${{ env.ACT == 'true' }} && startsWith(matrix.os, 'ubuntu') run: | sudo apt install -y software-properties-common sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test @@ -85,13 +85,11 @@ working-directory: tcl/unix - name: Configure ${{ matrix.cfgopt }} run: | - ls -la /Users/ssoberni/Documents/dev/nsf/tcl/unix/lib/ - ls -la ${GITHUB_WORKSPACE}/tcl/unix/lib ./configure ${CFGOPT} --prefix=${GITHUB_WORKSPACE}/build --with-tcl=${GITHUB_WORKSPACE}/tcl/unix/lib || (cat config.log && exit 1) env: CFGOPT: ${{ matrix.cfgopt }} - name: Build + tests (debugging) - if: ${{ env.ACT }} + if: ${{ env.ACT == 'true' }} run: | make test-nohttp - name: Build + tests (production)