diff --git a/.github/workflows/eepp-linux-build-check.yml b/.github/workflows/eepp-linux-build-check.yml index 44df08161..cb6062697 100644 --- a/.github/workflows/eepp-linux-build-check.yml +++ b/.github/workflows/eepp-linux-build-check.yml @@ -17,8 +17,8 @@ jobs: run: | sudo apt-get update sudo apt-get install -y wget g++-8 libsdl2-2.0-0 libsdl2-dev libopenal1 libopenal-dev - wget https://github.com/premake/premake-core/releases/download/v5.0.0-beta2/premake-5.0.0-beta2-linux.tar.gz - tar xvzf premake-5.0.0-beta2-linux.tar.gz + wget https://github.com/premake/premake-core/releases/download/v5.0.0-beta1/premake-5.0.0-beta1-linux.tar.gz + tar xvzf premake-5.0.0-beta1-linux.tar.gz - name: Build run: | ./premake5 gmake2 diff --git a/.github/workflows/eepp-macos-build-check.yml b/.github/workflows/eepp-macos-build-check.yml index dca85f725..48730a54c 100644 --- a/.github/workflows/eepp-macos-build-check.yml +++ b/.github/workflows/eepp-macos-build-check.yml @@ -17,8 +17,8 @@ jobs: run: | brew install wget brew install SDL2 - wget https://github.com/premake/premake-core/releases/download/v5.0.0-beta2/premake-5.0.0-beta2-macosx.tar.gz - tar -xzf premake-5.0.0-beta2-macosx.tar.gz + wget https://github.com/premake/premake-core/releases/download/v5.0.0-beta1/premake-5.0.0-beta1-macosx.tar.gz + tar -xzf premake-5.0.0-beta1-macosx.tar.gz - name: Build run: | ./premake5 --with-mojoAL gmake2 diff --git a/.github/workflows/eepp-windows-build-check.yml b/.github/workflows/eepp-windows-build-check.yml index 1f3432efe..d86c6a91d 100644 --- a/.github/workflows/eepp-windows-build-check.yml +++ b/.github/workflows/eepp-windows-build-check.yml @@ -4,9 +4,9 @@ on: [push, pull_request] jobs: Windows: - runs-on: windows-2022 + runs-on: windows-latest env: - MSBUILD_PATH: C:\Program Files (x86)\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin\ + MSBUILD_PATH: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin\ steps: - name: Checkout repository uses: actions/checkout@v3 @@ -18,8 +18,8 @@ jobs: - name: Install dependencies shell: powershell run: | - Invoke-WebRequest -Uri "https://github.com/premake/premake-core/releases/download/v5.0.0-beta2/premake-5.0.0-beta2-windows.zip" -OutFile "premake-5.0.0-beta2-windows.zip" - Expand-Archive -DestinationPath . -Path premake-5.0.0-beta2-windows.zip + Invoke-WebRequest -Uri "https://github.com/premake/premake-core/releases/download/v5.0.0-beta1/premake-5.0.0-beta1-windows.zip" -OutFile "premake-5.0.0-beta1-windows.zip" + Expand-Archive -DestinationPath . -Path premake-5.0.0-beta1-windows.zip - name: Create project shell: powershell run: |