From 8d70911ef4434a0dd712aa2c097347c074ca387e Mon Sep 17 00:00:00 2001 From: Timotej Date: Wed, 19 Aug 2020 18:51:54 +0200 Subject: [PATCH] Remove platform suffix from Linux and MacOS builds --- .github/workflows/ci-workflow.yml | 2 +- Bootstrap.mak | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-workflow.yml b/.github/workflows/ci-workflow.yml index c57d050fab..ac861ec15e 100644 --- a/.github/workflows/ci-workflow.yml +++ b/.github/workflows/ci-workflow.yml @@ -23,7 +23,7 @@ jobs: run: bin/${{ matrix.config }}/premake5 test - uses: actions/upload-artifact@v2 with: - name: ${{ matrix.osname }}-${{ matrix.config }}-${{ matrix.platform }} + name: ${{ matrix.osname }}-${{ matrix.config }} path: bin/${{ matrix.config }}/ windows: runs-on: windows-latest diff --git a/Bootstrap.mak b/Bootstrap.mak index 6a2f8a2cbb..06e0f20c79 100644 --- a/Bootstrap.mak +++ b/Bootstrap.mak @@ -150,4 +150,4 @@ windows: windows-base devenv .\build\bootstrap\Premake5.sln /Build "$(CONFIG)|$(PLATFORM:x86=win32)" windows-msbuild: windows-base - msbuild /t:Build /p:Configuration=$(CONFIG) /p:Platform=$(PLATFORM:x86=win32) /m .\build\bootstrap\Premake5.sln + msbuild /p:Configuration=$(CONFIG) /p:Platform=$(PLATFORM:x86=win32) .\build\bootstrap\Premake5.sln