diff --git a/.github/workflows/emu-build-all-linux.yml b/.github/workflows/emu-build-all-linux.yml index 68581af3..4fdefdaf 100644 --- a/.github/workflows/emu-build-all-linux.yml +++ b/.github/workflows/emu-build-all-linux.yml @@ -83,8 +83,8 @@ jobs: working-directory: ${{ github.workspace }} run: | sudo chmod 777 ./third-party/common/linux/premake/premake5 - ./third-party/common/linux/premake/premake5 --file=premake5.lua --os=linux genproto || echo ; - ./third-party/common/linux/premake/premake5 --file=premake5.lua --emubuild=${{ github.sha }} --os=linux gmake2 + ./${{env.THIRD_PARTY_BASE_DIR}}/common/linux/premake/premake5 --file=premake5.lua --os=linux genproto || echo ; + ./${{env.THIRD_PARTY_BASE_DIR}}/common/linux/premake/premake5 --file=premake5.lua --emubuild=${{ github.sha }} --os=linux gmake2 exit 0 ### build target(s) diff --git a/.github/workflows/emu-build-all-win.yml b/.github/workflows/emu-build-all-win.yml index b73354a0..a6cbed3c 100644 --- a/.github/workflows/emu-build-all-win.yml +++ b/.github/workflows/emu-build-all-win.yml @@ -80,9 +80,8 @@ jobs: shell: cmd working-directory: ${{ github.workspace }} run: | - third-party\common\win\premake\premake5.exe --file=premake5.lua --os=windows genproto || echo: - third-party\common\win\premake\premake5.exe --file=premake5.lua --emubuild=${{ github.sha }} --os=windows vs2022 - exit /b 0 + "${{env.THIRD_PARTY_BASE_DIR}}\common\win\premake\premake5.exe" --file=premake5.lua --os=windows genproto + "${{env.THIRD_PARTY_BASE_DIR}}\common\win\premake\premake5.exe" --file=premake5.lua --emubuild=${{ github.sha }} --os=windows vs2022 ### build target(s) - name: Build target(s)