Skip to content

Commit 7618250

Browse files
chore: restore Passport.cs CRLF endings
1 parent e62b861 commit 7618250

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

.github/workflows/test-build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ jobs:
1414
test:
1515
if: github.event.pull_request.head.repo.fork == false
1616
name: Test sample app 🛠️
17-
runs-on: ubuntu-latest-8-cores
17+
# Forcing windows-latest; UWB_WEBVIEW won’t be defined on Linux. Others stay on Ubuntu.
18+
runs-on: ${{ matrix.targetPlatform == 'StandaloneWindows64' && 'windows-latest' || 'ubuntu-latest-8-cores' }}
1819

1920
steps:
2021
- uses: actions/checkout@v3
@@ -47,7 +48,8 @@ jobs:
4748
test-unity6:
4849
if: github.event.pull_request.head.repo.fork == false
4950
name: Test Unity 6 sample app 🛠️
50-
runs-on: ubuntu-latest-8-cores
51+
# Forcing windows-latest; UWB_WEBVIEW won’t be defined on Linux. Others stay on Ubuntu.
52+
runs-on: ${{ matrix.targetPlatform == 'StandaloneWindows64' && 'windows-latest' || 'ubuntu-latest-8-cores' }}
5153
steps:
5254
- uses: actions/checkout@v3
5355
with:

.github/workflows/ui-tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ concurrency:
2828
jobs:
2929
build:
3030
name: Build ${{ matrix.targetPlatform }} for AltTester 🛠️
31-
runs-on: ubuntu-latest-8-cores
31+
# Forcing windows-latest for Windows builds; on Linux UWB_WEBVIEW won't be defined and UWB is stripped. Others stay on Ubuntu.
32+
runs-on: ${{ contains(matrix.targetPlatform, 'Windows') && 'windows-latest' || 'ubuntu-latest-8-cores' }}
3233
strategy:
3334
fail-fast: false
3435
matrix:

sample/Assets/Editor/WindowsBuilderUnity6.cs.meta

Lines changed: 10 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)