Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

move to 1es #32

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 15 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ on:

jobs:
Windows:
runs-on: windows-2019
runs-on:
- self-hosted
- 1ES.Pool=MC-Runner-1ES-Windows
env:
VS_PATH: C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\
MSBUILD_PATH: C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\
Expand Down Expand Up @@ -197,7 +199,9 @@ jobs:
run: '"%MSBUILD_PATH%\MSBuild.exe" examples/example_win32_directx12/example_win32_directx12.vcxproj /p:Platform=x64 /p:Configuration=Release'

Linux:
runs-on: ubuntu-20.04
runs-on:
- self-hosted
- 1ES.Pool=MC-Runner-1ES-Linux
steps:
- uses: actions/checkout@v2

Expand Down Expand Up @@ -436,7 +440,9 @@ jobs:
xcodebuild -project examples/example_apple_metal/example_apple_metal.xcodeproj -target example_apple_metal_ios CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO

Emscripten:
runs-on: ubuntu-18.04
runs-on:
- self-hosted
- 1ES.Pool=MC-Runner-1ES-Linux
steps:
- uses: actions/checkout@v2

Expand All @@ -463,7 +469,9 @@ jobs:
make -C examples/example_emscripten_wgpu

Android:
runs-on: ubuntu-18.04
runs-on:
- self-hosted
- 1ES.Pool=MC-Runner-1ES-Linux
steps:
- uses: actions/checkout@v2

Expand All @@ -473,7 +481,9 @@ jobs:
gradle assembleDebug

Discord-CI:
runs-on: ubuntu-18.04
runs-on:
- self-hosted
- 1ES.Pool=MC-Runner-1ES-Linux
if: always()
needs: [Windows, Linux, MacOS, iOS, Emscripten, Android]
steps:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ on:

jobs:
scheduled:
runs-on: ubuntu-latest
runs-on:
- self-hosted
- 1ES.Pool=MC-Runner-1ES-Linux
steps:
- run: exit 0
4 changes: 3 additions & 1 deletion .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ on:

jobs:
PVS-Studio:
runs-on: ubuntu-18.04
runs-on:
- self-hosted
- 1ES.Pool=MC-Runner-1ES-Linux
steps:
- uses: actions/checkout@v1
with:
Expand Down
Loading