Skip to content

Commit

Permalink
Use CDB Debugger
Browse files Browse the repository at this point in the history
  • Loading branch information
ax3l committed Jan 3, 2023
1 parent e1a6e69 commit 41514bf
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,12 @@ jobs:
cmake --build build --config Debug --target pip_install
if(!$?) { Exit $LASTEXITCODE }
llvm-objdump -p C:/Program Files (x86)/pyAMReX/bin/amrex.dll
llvm-objdump -p "C:\Program Files (x86)\pyAMReX\bin\amrex.dll"
Get-Childitem -Path C:\* -Recurse -Filter *python311.dll, *amrex.dll, *MSVCP140D.dll, KERNEL32.dll, VCRUNTIME140D.dll, VCRUNTIME140_1D.dll, ucrtbased.dll
Get-Childitem -Path C:\* -Recurse -Filter "*python311.dll, *amrex.dll, *MSVCP140D.dll, KERNEL32.dll, VCRUNTIME140D.dll, VCRUNTIME140_1D.dll, ucrtbased.dll"
- name: Unit tests
run: |
set PATH="C:/Program Files (x86)/pyAMReX/bin/;%PATH%"
ctest --test-dir build -C Debug --output-on-failure
(Get-Command ctest).Path
cdb -c "g;q" ctest --test-dir build -C Debug --output-on-failure

0 comments on commit 41514bf

Please sign in to comment.