clear all served steps again on all halt each step #220
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
# This workflow sets up and runs MSBuild and VSTest | |
# to build and test a Visual Studio solution. | |
name: Nightly Built Windows64 SDL2 | |
on: [push] | |
jobs: | |
winSDL2-64: | |
runs-on: windows-latest | |
steps: | |
- name: Setup MSBuild and add to PATH | |
uses: microsoft/setup-msbuild@v2 | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
id: checkout_code | |
- name: Make NSIS | |
shell: pwsh | |
run: | |
./.github/prepare-nsis.ps1 | |
- name: Run MSBuild | |
shell: pwsh | |
working-directory: ${{env.GITHUB_WORKSPACE}} | |
run: | | |
vcpkg integrate install | |
msbuild /m .\Simutrans-SDL2.vcxproj -p:Configuration=Release /p:platform=x64 | |
- name: Build zipfile | |
shell: pwsh | |
run: | | |
move-item "build/SDL2/Simutrans SDL2 Nightly.exe" "simutrans/simutrans.exe" | |
move-item "src\Windows\nsis\download-paksets.exe" "simutrans/download-pakset.exe" | |
tools/get_lang_files.ps1 | |
Compress-Archive -Path simutrans -DestinationPath "simuwin64-SDL2-nightly.zip" | |
dir | |
- name: Update binaries of Nightly Release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: ./simuwin64-SDL2-nightly.zip | |
asset_name: simuwin64-SDL2-nightly.zip | |
tag: Nightly | |
overwrite: true |