test #12
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 latest | |
on: [push] | |
concurrency: | |
group: ${{ github.ref }}-latest | |
cancel-in-progress: true | |
jobs: | |
build-mono: | |
if: github.ref_name == github.event.repository.default_branch | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Compile MCGalaxy using mono | |
shell: bash | |
id: compile | |
run: | | |
msbuild MCGalaxy.sln /p:Configuration=Release | |
cp -R bin/Release bin/Release_normal | |
rm bin/Release/MCGalaxy_.dll bin/Release/MCGalaxy_.pdb | |
msbuild MCGalaxy/MCGalaxy_.csproj /p:Configuration=Release /t:Rebuild /p:DefineConstants="TEN_BIT_BLOCKS" | |
- uses: ./.github/actions/notify_failure | |
if: ${{ always() && steps.compile.outcome == 'failure' }} | |
with: | |
NOTIFY_MESSAGE: 'Failed to compile MCGalaxy .NET build' | |
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}' | |
- uses: ./.github/actions/upload_build | |
if: ${{ always() && steps.compile.outcome == 'success' }} | |
with: | |
SOURCE_FILE: 'bin/Release_normal' | |
DEST_NAME: 'MCGalaxy' | |
- uses: ./.github/actions/upload_build | |
if: ${{ always() && steps.compile.outcome == 'success' }} | |
with: | |
SOURCE_FILE: 'bin/Release' | |
DEST_NAME: 'MCGalaxy-infid' | |
build-dotnet: | |
if: github.ref_name == github.event.repository.default_branch | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 6.0.x | |
- name: Restore dependencies | |
run: dotnet restore CLI/MCGalaxyCLI_dotnet.csproj | |
- name: Build | |
id: compile_net | |
run: | | |
dotnet build CLI/MCGalaxyCLI_dotnet.csproj --no-restore | |
- name: Publish-win64 | |
run: dotnet publish CLI/MCGalaxyCLI_dotnet.csproj -r win-x64 --self-contained | |
- uses: ./.github/actions/notify_failure | |
if: ${{ always() && steps.compile_net.outcome == 'failure' }} | |
with: | |
NOTIFY_MESSAGE: 'Failed to compile MCGalaxy dotnet build' | |
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}' | |
- uses: ./.github/actions/upload_build | |
if: ${{ always() && steps.compile_net.outcome == 'success' }} | |
with: | |
SOURCE_FILE: 'CLI/bin/Debug/net6.0' | |
DEST_NAME: 'MCGalaxy-dotnet6.0' |