Skip to content
Merged
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
3 changes: 1 addition & 2 deletions .yamato/config.metadata
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
editors:
- version: 6000.0
- version: 6000.3
- version: 6000.4
- version: trunk
- version: 6000.6

upm_ci_install: npm install -g upm-ci-utils@stable --registry https://artifactory.prd.it.unity3d.com/artifactory/api/npm/upm-npm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
# This is an auto-generated script. Do not edit manually!
set -x

crashReportDir="${TMPDIR%/}/BugReporterCrashReportJson"
if [ -d "$crashReportDir" ]; then
for f in "$crashReportDir"/CrashReport_*.json; do
[ -e "$f" ] || continue
curl -X POST --connect-timeout 5 --max-time 10 -H "Content-Type: application/json" -T "$f" "https://internal-crash-collector.prd.cds.internal.unity3d.com/api/crash" || echo "Failed to upload $f. Ignoring..."
done
fi
set -e
if [ -f "infrastructure_instability_detection_standalone.zip" ]; then
echo "removed existing archive infrastructure_instability_detection_standalone.zip"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@echo on
rem This is an auto-generated script. Do not edit manually!

if exist "%TEMP%\BugReporterCrashReportJson" for /f "delims=" %%i in ('dir /b /a-d "%TEMP%\BugReporterCrashReportJson\*.json"') do curl -X POST -H "Content-Type: application/json" -T "%TEMP%\BugReporterCrashReportJson\%%i" "https://internal-crash-collector.prd.cds.internal.unity3d.com/api/crash" || echo Failed to upload %%i. Ignoring...
if exist "%TEMP%\BugReporterCrashReportJson" for /f "delims=" %%i in ('dir /b /a-d "%TEMP%\BugReporterCrashReportJson\CrashReport_*.json"') do curl -X POST --connect-timeout 5 --max-time 10 -H "Content-Type: application/json" -T "%TEMP%\BugReporterCrashReportJson\%%i" "https://internal-crash-collector.prd.cds.internal.unity3d.com/api/crash" || echo Failed to upload %%i. Ignoring...
curl -fs "https://artifactory-slo.bf.unity3d.com/artifactory/automation-and-tooling/infrastructure-instability-detection/standalone/1.2.2/windows.zip" --output "infrastructure_instability_detection_standalone.zip" --retry 5
IF EXIST "infrastructure_instability_detection" rmdir /s /q infrastructure_instability_detection
powershell.exe -nologo -noprofile -command "& { Add-Type -A 'System.IO.Compression.FileSystem'; [IO.Compression.ZipFile]::ExtractToDirectory('infrastructure_instability_detection_standalone.zip', '.'); }" && DEL "infrastructure_instability_detection_standalone.zip"
Expand Down
60 changes: 0 additions & 60 deletions .yamato/input-system-editor-functional-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,66 +125,6 @@ inputsystem-editorfunctionaltests_-_6000_3_-_win10:
paths:
- artifacts/**/*

# InputSystem-EditorFunctionalTests - 6000.5 - MacOs13
inputsystem-editorfunctionaltests_-_6000_5_-_macos13:
name: InputSystem-EditorFunctionalTests - 6000.5 - MacOs13
agent:
image: package-ci/macos-13:v4
type: Unity::VM::osx
flavor: b1.xlarge
commands:
- command: dotnet tool install docfx --version 2.70.0 --tool-path $HOME/.pmdt
- command: git clone --branch "3.14.8-preview" git@github.cds.internal.unity3d.com:unity/com.unity.package-manager-doctools.git Packages/com.unity.package-manager-doctools
- command: unity-downloader-cli -u 6000.5/staging -c Editor --fast --wait
- command: .Editor/Unity.app/Contents/MacOS/Unity -projectPath . -batchmode -nographics -quit -executeMethod Packages.Rider.Editor.RiderScriptEditor.SyncSolution -logFile -
- command: UnifiedTestRunner --testproject=. --editor-location=.Editor --suite=Editor --suite=Playmode --category=!Performance --clean-library --api-profile=NET_4_6 --reruncount=1 --clean-library-on-rerun --enable-code-coverage --coverage-options="generateAdditionalMetrics;generateHtmlReport;assemblyFilters:+Unity.InputSystem*;pathReplacePatterns:@*,,**/PackageCache/,;sourcePaths:$YAMATO_SOURCE_DIR/Packages;" --coverage-results-path=$YAMATO_SOURCE_DIR/upm-ci~/CodeCoverage --coverage-upload-options="reportsDir:upm-ci~/CodeCoverage;name:inputsystem_MacOS_6000.5_project;flags:inputsystem_MacOS_6000.5_project" --timeout=3600 --artifacts-path=artifacts
after:
- command: bash .yamato/generated-scripts/infrastructure-instability-detection-mac.sh
artifacts:
artifacts:
paths:
- artifacts/**/*

# InputSystem-EditorFunctionalTests - 6000.5 - Ubuntu2204
inputsystem-editorfunctionaltests_-_6000_5_-_ubuntu2204:
name: InputSystem-EditorFunctionalTests - 6000.5 - Ubuntu2204
agent:
image: package-ci/ubuntu-22.04:v4
type: Unity::VM::GPU
flavor: b1.large
commands:
- command: dotnet tool install docfx --version 2.70.0 --tool-path $HOME/.pmdt
- command: git clone --branch "3.14.8-preview" git@github.cds.internal.unity3d.com:unity/com.unity.package-manager-doctools.git Packages/com.unity.package-manager-doctools
- command: unity-downloader-cli -u 6000.5/staging -c Editor --fast --wait
- command: .Editor/Unity -projectPath . -batchmode -nographics -quit -executeMethod Packages.Rider.Editor.RiderScriptEditor.SyncSolution -logFile -
- command: UnifiedTestRunner --testproject=. --editor-location=.Editor --suite=Editor --suite=Playmode --category=!Performance --clean-library --api-profile=NET_4_6 --reruncount=1 --clean-library-on-rerun --enable-code-coverage --coverage-options="generateAdditionalMetrics;generateHtmlReport;assemblyFilters:+Unity.InputSystem*;pathReplacePatterns:@*,,**/PackageCache/,;sourcePaths:$YAMATO_SOURCE_DIR/Packages;" --coverage-results-path=$YAMATO_SOURCE_DIR/upm-ci~/CodeCoverage --coverage-upload-options="reportsDir:upm-ci~/CodeCoverage;name:inputsystem_Ubuntu_6000.5_project;flags:inputsystem_Ubuntu_6000.5_project" --timeout=3600 --artifacts-path=artifacts
after:
- command: bash .yamato/generated-scripts/infrastructure-instability-detection-linux.sh
artifacts:
artifacts:
paths:
- artifacts/**/*

# InputSystem-EditorFunctionalTests - 6000.5 - Win10
inputsystem-editorfunctionaltests_-_6000_5_-_win10:
name: InputSystem-EditorFunctionalTests - 6000.5 - Win10
agent:
image: package-ci/win10:v4
type: Unity::VM
flavor: b1.large
commands:
- command: dotnet tool install docfx --version 2.70.0 --tool-path %USERPROFILE%/.pmdt
- command: git clone --branch "3.14.8-preview" git@github.cds.internal.unity3d.com:unity/com.unity.package-manager-doctools.git Packages/com.unity.package-manager-doctools
- command: unity-downloader-cli -u 6000.5/staging -c Editor --fast --wait
- command: .Editor\Unity.exe -projectPath . -batchmode -nographics -quit -executeMethod Packages.Rider.Editor.RiderScriptEditor.SyncSolution -logFile -
- command: UnifiedTestRunner.exe --testproject=. --editor-location=.Editor --suite=Editor --suite=Playmode --category=!Performance --clean-library --api-profile=NET_4_6 --reruncount=1 --clean-library-on-rerun --enable-code-coverage --coverage-options="generateAdditionalMetrics;generateHtmlReport;assemblyFilters:+Unity.InputSystem*;pathReplacePatterns:@*,,**/PackageCache/,;sourcePaths:%YAMATO_SOURCE_DIR%/Packages;" --coverage-results-path=%YAMATO_SOURCE_DIR%/upm-ci~/CodeCoverage --coverage-upload-options="reportsDir:upm-ci~/CodeCoverage;name:inputsystem_Windows_6000.5_project;flags:inputsystem_Windows_6000.5_project" --timeout=3600 --artifacts-path=artifacts
after:
- command: .yamato\generated-scripts\infrastructure-instability-detection-win.cmd
artifacts:
artifacts:
paths:
- artifacts/**/*

# InputSystem-EditorFunctionalTests - 6000.6 - MacOs13Arm
inputsystem-editorfunctionaltests_-_6000_6_-_macos13arm:
name: InputSystem-EditorFunctionalTests - 6000.6 - MacOs13Arm
Expand Down
57 changes: 0 additions & 57 deletions .yamato/input-system-editor-performance-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,63 +119,6 @@ inputsystem-editorperformancetests_-_6000_3_-_win10:
paths:
- artifacts/**/*

# InputSystem-EditorPerformanceTests - 6000.5 - MacOs13
inputsystem-editorperformancetests_-_6000_5_-_macos13:
name: InputSystem-EditorPerformanceTests - 6000.5 - MacOs13
agent:
image: package-ci/macos-13:v4
type: Unity::VM::osx
flavor: b1.xlarge
commands:
- command: dotnet tool install docfx --version 2.70.0 --tool-path $HOME/.pmdt
- command: git clone --branch "3.14.8-preview" git@github.cds.internal.unity3d.com:unity/com.unity.package-manager-doctools.git Packages/com.unity.package-manager-doctools
- command: unity-downloader-cli -u 6000.5/staging -c Editor --fast --wait
- command: UnifiedTestRunner --testproject=. --editor-location=.Editor --suite=Editor --suite=Playmode --category=Performance --clean-library --api-profile=NET_4_6 --reruncount=1 --clean-library-on-rerun --report-performance-data --performance-project-id=InputSystem --timeout=3600 --artifacts-path=artifacts
after:
- command: bash .yamato/generated-scripts/infrastructure-instability-detection-mac.sh
artifacts:
artifacts:
paths:
- artifacts/**/*

# InputSystem-EditorPerformanceTests - 6000.5 - Ubuntu2204
inputsystem-editorperformancetests_-_6000_5_-_ubuntu2204:
name: InputSystem-EditorPerformanceTests - 6000.5 - Ubuntu2204
agent:
image: package-ci/ubuntu-22.04:v4
type: Unity::VM::GPU
flavor: b1.large
commands:
- command: dotnet tool install docfx --version 2.70.0 --tool-path $HOME/.pmdt
- command: git clone --branch "3.14.8-preview" git@github.cds.internal.unity3d.com:unity/com.unity.package-manager-doctools.git Packages/com.unity.package-manager-doctools
- command: unity-downloader-cli -u 6000.5/staging -c Editor --fast --wait
- command: UnifiedTestRunner --testproject=. --editor-location=.Editor --suite=Editor --suite=Playmode --category=Performance --clean-library --api-profile=NET_4_6 --reruncount=1 --clean-library-on-rerun --report-performance-data --performance-project-id=InputSystem --timeout=3600 --artifacts-path=artifacts
after:
- command: bash .yamato/generated-scripts/infrastructure-instability-detection-linux.sh
artifacts:
artifacts:
paths:
- artifacts/**/*

# InputSystem-EditorPerformanceTests - 6000.5 - Win10
inputsystem-editorperformancetests_-_6000_5_-_win10:
name: InputSystem-EditorPerformanceTests - 6000.5 - Win10
agent:
image: package-ci/win10:v4
type: Unity::VM
flavor: b1.large
commands:
- command: dotnet tool install docfx --version 2.70.0 --tool-path %USERPROFILE%/.pmdt
- command: git clone --branch "3.14.8-preview" git@github.cds.internal.unity3d.com:unity/com.unity.package-manager-doctools.git Packages/com.unity.package-manager-doctools
- command: unity-downloader-cli -u 6000.5/staging -c Editor --fast --wait
- command: UnifiedTestRunner.exe --testproject=. --editor-location=.Editor --suite=Editor --suite=Playmode --category=Performance --clean-library --api-profile=NET_4_6 --reruncount=1 --clean-library-on-rerun --report-performance-data --performance-project-id=InputSystem --timeout=3600 --artifacts-path=artifacts
after:
- command: .yamato\generated-scripts\infrastructure-instability-detection-win.cmd
artifacts:
artifacts:
paths:
- artifacts/**/*

# InputSystem-EditorPerformanceTests - 6000.6 - MacOs13Arm
inputsystem-editorperformancetests_-_6000_6_-_macos13arm:
name: InputSystem-EditorPerformanceTests - 6000.6 - MacOs13Arm
Expand Down
90 changes: 0 additions & 90 deletions .yamato/input-system-mobile-functional-build-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,96 +184,6 @@ inputsystem-mobilefunctionalbuildjobs_-_6000_3_-_tvos:
paths:
- build/players/**/*

# InputSystem-MobileFunctionalBuildJobs - 6000.5 - Android - il2cpp
inputsystem-mobilefunctionalbuildjobs_-_6000_5_-_android_-_il2cpp:
name: InputSystem-MobileFunctionalBuildJobs - 6000.5 - Android - il2cpp
agent:
image: package-ci/win10:default
type: Unity::VM
flavor: b1.xlarge
commands:
- command: unity-downloader-cli -u 6000.5/staging -c Editor -c Android --fast --wait
- command: |-
set ANDROID_DEVICE_CONNECTION=%BOKKEN_DEVICE_IP%
UnifiedTestRunner --testproject=. --editor-location=.Editor --suite=playmode --category=!Performance --clean-library --reruncount=1 --clean-library-on-rerun --build-only --player-save-path=build/players --timeout=3600 --artifacts-path=build/logs --platform=android --scripting-backend=il2cpp
after:
- command: .yamato\generated-scripts\infrastructure-instability-detection-win.cmd
artifacts:
logs:
paths:
- build/logs/**/*
players:
paths:
- build/players/**/*

# InputSystem-MobileFunctionalBuildJobs - 6000.5 - Android - mono
inputsystem-mobilefunctionalbuildjobs_-_6000_5_-_android_-_mono:
name: InputSystem-MobileFunctionalBuildJobs - 6000.5 - Android - mono
agent:
image: package-ci/win10:default
type: Unity::VM
flavor: b1.xlarge
commands:
- command: unity-downloader-cli -u 6000.5/staging -c Editor -c Android --fast --wait
- command: |-
set ANDROID_DEVICE_CONNECTION=%BOKKEN_DEVICE_IP%
UnifiedTestRunner --testproject=. --editor-location=.Editor --suite=playmode --category=!Performance --clean-library --reruncount=1 --clean-library-on-rerun --build-only --player-save-path=build/players --timeout=3600 --artifacts-path=build/logs --platform=android
after:
- command: .yamato\generated-scripts\infrastructure-instability-detection-win.cmd
artifacts:
logs:
paths:
- build/logs/**/*
players:
paths:
- build/players/**/*

# InputSystem-MobileFunctionalBuildJobs - 6000.5 - IOS
inputsystem-mobilefunctionalbuildjobs_-_6000_5_-_ios:
name: InputSystem-MobileFunctionalBuildJobs - 6000.5 - IOS
agent:
image: package-ci/macos-13:default
type: Unity::VM::osx
flavor: m1.mac
commands:
- command: unity-downloader-cli -u 6000.5/staging -c Editor -c iOS --fast --wait
- command: |-
curl -s https://artifactory-slo.bf.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr --output utr
chmod u+x utr
- command: ./utr --testproject=. --editor-location=.Editor --suite=playmode --category=!Performance --clean-library --reruncount=1 --clean-library-on-rerun --build-only --player-save-path=build/players --timeout=3600 --artifacts-path=build/logs --platform=ios
after:
- command: bash .yamato/generated-scripts/infrastructure-instability-detection-mac.sh
artifacts:
logs:
paths:
- build/logs/**/*
players:
paths:
- build/players/**/*
variables:
UNITY_HANDLEUIINTERRUPTIONS: 1
UTR_VERSION: 1.42.0

# InputSystem-MobileFunctionalBuildJobs - 6000.5 - TvOS
inputsystem-mobilefunctionalbuildjobs_-_6000_5_-_tvos:
name: InputSystem-MobileFunctionalBuildJobs - 6000.5 - TvOS
agent:
image: package-ci/macos-13:default
type: Unity::VM::osx
flavor: m1.mac
commands:
- command: unity-downloader-cli -u 6000.5/staging -c Editor -c AppleTV --fast --wait
- command: UnifiedTestRunner --testproject=. --editor-location=.Editor --suite=playmode --category=!Performance --clean-library --reruncount=1 --clean-library-on-rerun --build-only --player-save-path=build/players --timeout=3600 --artifacts-path=build/logs --platform=tvOS
after:
- command: bash .yamato/generated-scripts/infrastructure-instability-detection-mac.sh
artifacts:
logs:
paths:
- build/logs/**/*
players:
paths:
- build/players/**/*

# InputSystem-MobileFunctionalBuildJobs - 6000.6 - Android - il2cpp
inputsystem-mobilefunctionalbuildjobs_-_6000_6_-_android_-_il2cpp:
name: InputSystem-MobileFunctionalBuildJobs - 6000.6 - Android - il2cpp
Expand Down
Loading
Loading