Skip to content

Commit

Permalink
path cdb?
Browse files Browse the repository at this point in the history
  • Loading branch information
ax3l committed Jan 3, 2023
1 parent caa181f commit 53ba504
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,26 @@ jobs:
with:
python-version: '3.x'
- uses: seanmiddleditch/gha-setup-ninja@master

- name: Add debugger to the Path
shell: bash
run: |
echo "C:\\Program Files (x86)\\pyAMReX\\bin" >> $GITHUB_PATH
echo "C:\\Program Files (x86)\\Windows Kits\\10\\Debuggers\\x64" >> $GITHUB_PATH
- name: cdb.exe explicit
run: |
& "C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\cdb.exe" -version
- name: cdb
run: cdb -version

- name: cdb.exe
run: cdb.exe -version

- name: gflags
run: gflags -version

- name: Build & Install
run: |
python3 -m pip install -U pip setuptools wheel pytest
Expand Down Expand Up @@ -67,8 +87,7 @@ jobs:
$env:Path += "C:\Program Files (x86)\pyAMReX\bin"
$env:Path += "C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\"
(Get-Command ctest).Path
gflags /i C:\hostedtoolcache\windows\Python\3.11.1\x64\Scripts\ctest.exe +sls
cdb -c "g;q" ctest --test-dir build -C Debug --output-on-failure
Get-Childitem -Path C:\Program Files (x86)\* -Recurse -Filter "*python311.dll, *amrex.dll, *MSVCP140D.dll, KERNEL32.dll, VCRUNTIME140D.dll, VCRUNTIME140_1D.dll, ucrtbased.dll"
# gflags /i C:\hostedtoolcache\windows\Python\3.11.1\x64\Scripts\ctest.exe +sls

0 comments on commit 53ba504

Please sign in to comment.