diff --git a/.github/workflows/build-static.yml b/.github/workflows/build-static.yml index b233260421..f88b9ce2f1 100644 --- a/.github/workflows/build-static.yml +++ b/.github/workflows/build-static.yml @@ -67,16 +67,28 @@ jobs: cmake -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTING=OFF -S . -B build-tools -G Ninja cmake --build build-tools --config Debug --target quick-lint-js-build-tools - - name: PATH - run: | - set -x - echo "${SHELL}" - echo "${PATH}" - MSYS2_ARG_CONV_EXCL="*" cmd /c "echo %PATH%" - env + - name: PATH (bash) + run: echo "${PATH}" shell: bash - - name: Setup tmate session - uses: mxschmitt/action-tmate@v3 + #set -x + #echo "${SHELL}" + #MSYS2_ARG_CONV_EXCL="*" cmd /c "echo %PATH%" + #env + + - name: PATH (cmd) + run: echo %PATH% + shell: cmd + + - name: PATH (pwsh) + run: echo $env:PATH + shell: pwsh + + - name: PATH (powershell) + run: echo $env:PATH + shell: powershell + + #- name: Setup tmate session + #uses: mxschmitt/action-tmate@v3 - name: configure run: | env | grep '^CMAKE\|^QUICK_LINT_JS' | sort