Skip to content

Commit 5dcc00c

Browse files
HenrikPoulsenSourcegraph
andauthored
Use slough artifactory in CI Part 2 (#2867)
Co-authored-by: Sourcegraph <[email protected]>
1 parent b097d74 commit 5dcc00c

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.yamato/mobile-build-and-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ build_{{ project.name }}_tests_{{ editor }}_android:
1212
flavor: b1.xlarge
1313
commands:
1414
- pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple
15-
- curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr.bat --output utr.bat
15+
- curl -s https://artifactory-slo.bf.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr.bat --output utr.bat
1616
- python .yamato/disable-burst-if-requested.py --project-path testproject --platform Android
1717
- unity-downloader-cli -u {{ editor }} -c editor -c Android -w --fast
1818
- |
@@ -51,7 +51,7 @@ build_{{ project.name }}_tests_{{ editor }}_iOS:
5151
commands:
5252
- pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple
5353
- unity-downloader-cli -u {{ editor }} -c editor -c iOS -w --fast
54-
- curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr --output utr
54+
- curl -s https://artifactory-slo.bf.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr --output utr
5555
- chmod +x ./utr
5656
- export UTR_VERSION=0.12.0
5757
- ./utr --artifacts_path=artifacts --timeout=1800 --testproject={{ project.name }} --editor-location=.Editor --suite=playmode --platform=iOS --build-only --player-save-path=build/players --extra-editor-arg=-batchmode --extra-editor-arg=-nographics --testfilter=Unity.Netcode.RuntimeTests
@@ -88,7 +88,7 @@ run_{{ project.name }}_tests_{{ editor }}_iOS:
8888
- .yamato/mobile-build-and-test.yml#build_{{ project.name }}_tests_{{ editor }}_iOS
8989
commands:
9090
# Download standalone UnityTestRunner
91-
- curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr --output utr
91+
- curl -s https://artifactory-slo.bf.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr --output utr
9292
# Give UTR execution permissions
9393
- chmod +x ./utr
9494
# Run the test build on the device
@@ -127,7 +127,7 @@ run_{{ project.name }}_tests_{{ editor }}_android:
127127
dependencies:
128128
- .yamato/mobile-build-and-test.yml#build_{{ project.name }}_tests_{{ editor }}_android
129129
commands:
130-
- curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr.bat --output utr.bat
130+
- curl -s https://artifactory-slo.bf.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr.bat --output utr.bat
131131
- |
132132
set ANDROID_DEVICE_CONNECTION=%BOKKEN_DEVICE_IP%
133133
start %ANDROID_SDK_ROOT%\platform-tools\adb.exe connect %BOKKEN_DEVICE_IP%

.yamato/multiprocess-project-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ singlenode_multiprocess_test_testproject_{{ editor }}_{{ platform.name }}:
1515
- pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple
1616
{% if editor != "trunk" %}
1717
- unity-downloader-cli -u {{ editor }} -c editor -w --fast
18-
- curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr{% if platform.name == "win" %}.bat --output utr.bat{% endif %}{% if platform.name != "win" %} --output utr && chmod +x ./utr{% endif %}
18+
- curl -s https://artifactory-slo.bf.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr{% if platform.name == "win" %}.bat --output utr.bat{% endif %}{% if platform.name != "win" %} --output utr && chmod +x ./utr{% endif %}
1919
- {{ platform.editorpath }} -projectpath testproject -batchmode -quit -nographics -logfile BuildMultiprocessTestPlayer.log -executeMethod Unity.Netcode.MultiprocessRuntimeTests.BuildMultiprocessTestPlayer.BuildRelease
2020
{% if platform.name == "mac" %} - sudo codesign --force --deep --sign - ./testproject/Builds/MultiprocessTests/MultiprocessTestPlayer.app{% endif %}
2121
- {{ platform.utr }} --suite=playmode --testproject=testproject --editor-location=.Editor --testfilter=Unity.Netcode.MultiprocessRuntimeTests --extra-editor-arg=-bypassIgnoreUTR

.yamato/standalone-project-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ standalone_tests_{{ project.name }}_{{ backend }}_{{ editor }}_{{ platform.name
1616
commands:
1717
- npm install upm-ci-utils@stable -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm
1818
- pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple
19-
- curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr{% if platform.name == "win" %}.bat{% endif %} --output utr{% if platform.name == "win" %}.bat{% endif %}
19+
- curl -s https://artifactory-slo.bf.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr{% if platform.name == "win" %}.bat{% endif %} --output utr{% if platform.name == "win" %}.bat{% endif %}
2020
{% if platform.name != "win" %}
2121
- chmod +x ./utr
2222
{% endif %}

.yamato/webgl-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ build_{{ project.name }}_tests_{{ editor }}_webgl:
1212
flavor: b1.xlarge
1313
commands:
1414
- pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple
15-
- curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr.bat --output utr.bat
15+
- curl -s https://artifactory-slo.bf.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr.bat --output utr.bat
1616
- python .yamato/disable-burst-if-requested.py --project-path testproject --platform WebGL
1717
- unity-downloader-cli -u {{ editor }} -c editor -c webgl -c il2cpp -w --fast
1818
- |

0 commit comments

Comments
 (0)