Temporarily disabling other build workflows
This commit is contained in:
1
.github/workflows/build_android.yml
vendored
1
.github/workflows/build_android.yml
vendored
@@ -5,6 +5,7 @@ jobs:
|
||||
|
||||
# Game
|
||||
game-windows:
|
||||
if: ${{ false }}
|
||||
name: Game (Android, Release ARM64)
|
||||
runs-on: "windows-2019"
|
||||
steps:
|
||||
|
||||
2
.github/workflows/build_linux.yml
vendored
2
.github/workflows/build_linux.yml
vendored
@@ -5,6 +5,7 @@ jobs:
|
||||
|
||||
# Editor
|
||||
editor-linux:
|
||||
if: ${{ false }}
|
||||
name: Editor (Linux, Development x64)
|
||||
runs-on: "ubuntu-20.04"
|
||||
steps:
|
||||
@@ -28,6 +29,7 @@ jobs:
|
||||
|
||||
# Game
|
||||
game-linux:
|
||||
if: ${{ false }}
|
||||
name: Game (Linux, Release x64)
|
||||
runs-on: "ubuntu-20.04"
|
||||
steps:
|
||||
|
||||
2
.github/workflows/build_mac.yml
vendored
2
.github/workflows/build_mac.yml
vendored
@@ -5,6 +5,7 @@ jobs:
|
||||
|
||||
# Editor
|
||||
editor-mac:
|
||||
if: ${{ false }}
|
||||
name: Editor (Mac, Development x64)
|
||||
runs-on: "macos-latest"
|
||||
steps:
|
||||
@@ -22,6 +23,7 @@ jobs:
|
||||
|
||||
# Game
|
||||
game-mac:
|
||||
if: ${{ false }}
|
||||
name: Game (Mac, Release x64)
|
||||
runs-on: "macos-latest"
|
||||
steps:
|
||||
|
||||
7
.github/workflows/build_windows.yml
vendored
7
.github/workflows/build_windows.yml
vendored
@@ -6,7 +6,7 @@ jobs:
|
||||
# Editor
|
||||
editor-windows:
|
||||
name: Editor (Windows, Development x64)
|
||||
runs-on: "windows-2019"
|
||||
runs-on: "windows-2022"
|
||||
steps:
|
||||
- name: Checkout repo
|
||||
uses: actions/checkout@v3
|
||||
@@ -16,6 +16,9 @@ jobs:
|
||||
uses: actions/setup-dotnet@v3
|
||||
with:
|
||||
dotnet-version: 7.0.x
|
||||
- name: Check .NET versions
|
||||
run: |
|
||||
dotnet --list-sdks
|
||||
- name: Checkout LFS
|
||||
run: |
|
||||
git lfs version
|
||||
@@ -27,7 +30,7 @@ jobs:
|
||||
# Game
|
||||
game-windows:
|
||||
name: Game (Windows, Release x64)
|
||||
runs-on: "windows-2019"
|
||||
runs-on: "windows-2022"
|
||||
steps:
|
||||
- name: Checkout repo
|
||||
uses: actions/checkout@v3
|
||||
|
||||
1
.github/workflows/tests.yml
vendored
1
.github/workflows/tests.yml
vendored
@@ -5,6 +5,7 @@ jobs:
|
||||
|
||||
# Tests
|
||||
tests-linux:
|
||||
if: ${{ false }}
|
||||
name: Tests (Linux)
|
||||
runs-on: "ubuntu-20.04"
|
||||
steps:
|
||||
|
||||
Reference in New Issue
Block a user