Skip to content

Commit

Permalink
@@@ debug CI
Browse files Browse the repository at this point in the history
  • Loading branch information
strager committed Feb 11, 2024
1 parent 70c8904 commit ebcab63
Showing 1 changed file with 21 additions and 9 deletions.
30 changes: 21 additions & 9 deletions .github/workflows/build-static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ebcab63

Please sign in to comment.