Github Actions: try again with minor fixes.

This commit is contained in:
Martín Lucas Golini
2022-11-02 12:25:33 -03:00
parent c23236a53d
commit a2730690f1
3 changed files with 8 additions and 8 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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: |