Skip to content

Commit

Permalink
XXX use ${{env.BUILD_TYPE}}
Browse files Browse the repository at this point in the history
  • Loading branch information
ndim committed Aug 18, 2024
1 parent 0973f67 commit f2b1dec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ jobs:
- name: Debug output
run: Get-ChildItem -Path build -Force –Recurse
- name: "Dryrun test (not installed)"
run: Write-Host "`n`n" -NoNewline | bash tools/test-avrdude -v -t $env:TEMP -e build/src/RelWithDebInfo/avrdude.exe -c "-C build/src/avrdude.conf" -d0 -p"-cdryrun -pm2560" -p"-cdryrun -pavr64du28"
run: Write-Host "`n`n" -NoNewline | bash tools/test-avrdude -v -t $env:TEMP -e build/src/${{env.BUILD_TYPE}}/avrdude.exe -c "-C build/src/avrdude.conf" -d0 -p"-cdryrun -pm2560" -p"-cdryrun -pavr64du28"
# Installing requires non-existing python312_d.lib from swig_avrdude.vcxproj
#- name: Install
# run: cmake --build build --target install
Expand All @@ -382,8 +382,8 @@ jobs:
!**/*.obj
- name: Move executables
run: |
mv build/src/RelWithDebInfo/avrdude.exe build/src
mv build/src/RelWithDebInfo/avrdude.pdb build/src
mv build/src/${{env.BUILD_TYPE}}/avrdude.exe build/src
mv build/src/${{env.BUILD_TYPE}}/avrdude.pdb build/src
- name: Archive executables
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit f2b1dec

Please sign in to comment.