Skip to content

Bump microsoft/setup-msbuild from 1.3 to 2 in the github-actions group #65

Bump microsoft/setup-msbuild from 1.3 to 2 in the github-actions group

Bump microsoft/setup-msbuild from 1.3 to 2 in the github-actions group #65

Workflow file for this run

name: CI
env:
BUILD_CONFIGURATION: Release
on: [push, pull_request]
jobs:
Linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Get dependencies
shell: bash
run: sudo apt-get update && sudo apt-get install gcc make g++ libtool cmake
- name: Build
run: "bash ci.sh"
Windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Set MSBuild env
uses: microsoft/setup-msbuild@v2
- name: Build for engine
run: "bash ci.sh"
MacOS:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Build
run: "bash ci.sh"