Update main-rs.yml #187
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: Midday build | |
on: | |
push: | |
branches: | |
- "**" | |
pull_request: | |
branches: | |
- "**" | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build-pack-win64: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '6.0.x' | |
- uses: actions/checkout@v2 | |
- name: Add msbuild to PATH | |
uses: microsoft/setup-msbuild@v1.1 | |
- name: Update dependencies | |
run: bash update_dependencies.sh | |
- name: Build | |
run: bash build_pack.sh | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: Sonic 4 Mod Loader | |
path: dist/Sonic4ModLoader.7z | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: Sonic 4 Mod Loader (without 7-Zip) | |
path: dist/Sonic4ModLoader_7zip-less.7z | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: SHA256 sums | |
path: dist/SHA256SUMS | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: AMBPatcher | |
path: dist/Sonic4ModLoader/AMBPatcher.exe | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '6.0.x' | |
- uses: actions/checkout@v2 | |
- name: Build AMBPatcher | |
run: | | |
dotnet publish Sonic4_ModLoader/AMBPatcher -c Release --os linux | |
mkdir -p "./dist/Sonic4ModLoader/Mod Loader - licenses" | |
cp "./Sonic4_ModLoader/AMBPatcher/bin/Release/net6.0/linux-x64/publish/AMBPatcher" "./dist/Sonic4ModLoader/AMBPatcher.exe" | |
- name: Run tests | |
run: bash ./tests/run_tests.sh --no-crash | |
build-pack-win86: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '6.0.x' | |
- uses: actions/checkout@v2 | |
- name: Add msbuild to PATH | |
uses: microsoft/setup-msbuild@v1.1 | |
- name: Update dependencies | |
run: bash update_dependencies.sh | |
- name: Build | |
run: bash build_pack_x86.sh | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: Sonic 4 Mod Loader (without 7-Zip) (x86) | |
path: dist/Sonic4ModLoader_7zip-less.7z | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: SHA256 sums (x86) | |
path: dist/SHA256SUMS | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: AMBPatcher (x86) | |
path: dist/Sonic4ModLoader/AMBPatcher.exe |