make libwinpe_test compatible with tcc #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build_wintools | |
on: | |
push: {tags: ['v*'] } # Push events to matching v*, i.e. v1.0, v20.15.10 | |
pull_request: | |
permissions: | |
contents: write | |
jobs: | |
build_winexe_winloader: | |
runs-on: windows-2019 | |
steps: | |
- name: pull and init | |
uses: actions/checkout@v3 | |
with: {submodules: true} | |
- name: add msbuild to path | |
uses: microsoft/setup-msbuild@v1.1 | |
- name: build target | |
run: .\project\winexe_winloader\release_msvc.bat | |
- name: upload release | |
uses: ncipollo/release-action@v1 | |
if: github.event_name == 'push' | |
with: | |
artifacts: "./project/winexe_winloader/build/winloader32.exe,./project/winexe_winloader/build/winloader64.exe" | |
allowUpdates: "true" | |
token: ${{ secrets.GITHUB_TOKEN }} | |
build_windll_winhook: | |
runs-on: windows-2019 | |
steps: | |
- name: pull and init | |
uses: actions/checkout@v3 | |
with: {submodules: true} | |
- name: add msbuild to path | |
uses: microsoft/setup-msbuild@v1.1 | |
- name: build target | |
run: .\project\windll_winhook\release_msvc.bat | |
- name: upload release | |
uses: ncipollo/release-action@v1 | |
if: github.event_name == 'push' | |
with: | |
artifacts: "./project/windll_winhook/build/libwinhook32.dll,./project/windll_winhook/build/libwinhook64.dll" | |
allowUpdates: "true" | |
token: ${{ secrets.GITHUB_TOKEN }} | |
build_windll_winpe: | |
runs-on: windows-2019 | |
steps: | |
- name: pull and init | |
uses: actions/checkout@v3 | |
with: {submodules: true} | |
- name: add msbuild to path | |
uses: microsoft/setup-msbuild@v1.1 | |
- name: build target | |
run: .\project\windll_winpe\release_msvc.bat | |
- name: upload release | |
uses: ncipollo/release-action@v1 | |
if: github.event_name == 'push' | |
with: | |
artifacts: "./project/windll_winpe/build/libwinpe32.dll,./project/windll_winpe/build/libwinpe64.dll" | |
allowUpdates: "true" | |
token: ${{ secrets.GITHUB_TOKEN }} |