Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a dumpbin phase #43

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 3 additions & 15 deletions .github/workflows/feature.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,7 @@ jobs:
cmake_args: -G"Visual Studio 17 2022" -A arm64ec -DCMAKE_SYSTEM_VERSION=10
run_test: false


steps:
- name: Install Windows dependencies
if: matrix.os == 'windows-latest'
run: choco install zip

- name: Checkout code
uses: actions/checkout@v2
with:
Expand All @@ -64,13 +59,6 @@ jobs:
if: ${{ matrix.run_test }}
run: ${{ matrix.dir_build }}/${{ matrix.file_name }}${{ matrix.file_ext }} -h

- name: Compress binary
run: |
cd "${{ matrix.dir_build }}"
zip ${{ matrix.file_name }}-${{ matrix.name }}.zip ${{ matrix.file_name }}${{ matrix.file_ext }}

- name: Upload binary
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.file_name }}-${{ matrix.name }}.zip
path: ${{ matrix.dir_build }}/${{ matrix.file_name }}-${{ matrix.name }}.zip
- name: Windows Dumpbin
if: matrix.os == 'windows-latest'
run: dumpbin.exe ${{ matrix.dir_build }}/${{ matrix.file_name }}${{ matrix.file_ext }}
Loading