Skip to content

Commit 73f46f7

Browse files
committed
pack-job is no longer running on a windows VM
1 parent eb9c8e8 commit 73f46f7

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.yamato/wrench/package-pack-jobs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ package_pack_-_inputsystem:
1616
- command: 7z x -aoa wrench-localapv.zip
1717
- command: pip install semver requests --index-url https://artifactory-slo.bf.unity3d.com/artifactory/api/pypi/pypi/simple
1818
- command: python PythonScripts/print_machine_info.py
19-
- command: move /Y .\Assets\Samples .\Packages\com.unity.inputsystem
20-
- command: move /Y .\Assets\Samples.meta .\Packages\com.unity.inputsystem
19+
- command: mv /Y ./Assets/Samples ./Packages/com.unity.inputsystem
20+
- command: mv /Y ./Assets/Samples.meta ./Packages/com.unity.inputsystem
2121
- command: upm-ci package pack --package-path Packages/com.unity.inputsystem
2222
- command: cp upm-ci~/packages/packages.json upm-ci~/packages/com.unity.inputsystem_packages.json
2323
after:

.yamato/wrench/wrench_config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"com.unity.inputsystem": {
66
"directory": "Packages/com.unity.inputsystem/",
77
"prePackCommands": [
8-
"move /Y .\\Assets\\Samples .\\Packages\\com.unity.inputsystem",
9-
"move /Y .\\Assets\\Samples.meta .\\Packages\\com.unity.inputsystem"
8+
"mv /Y ./Assets/Samples ./Packages/com.unity.inputsystem",
9+
"mv /Y ./Assets/Samples.meta ./Packages/com.unity.inputsystem"
1010
],
1111
"preTestCommands": {
1212
"MacOS": [],

Tools/CI/Settings/InputSystemSettings.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ public class InputSystemSettings : AnnotatedSettingsBase
2424
{
2525
// We keep the samples in Assets/ as they otherwise won't get imported and you can't
2626
// really work with them. Move them into the package for when we pack the package.
27-
new Command("move /Y .\\Assets\\Samples .\\Packages\\com.unity.inputsystem"),
28-
new Command("move /Y .\\Assets\\Samples.meta .\\Packages\\com.unity.inputsystem"),
27+
new Command("mv /Y ./Assets/Samples ./Packages/com.unity.inputsystem"),
28+
new Command("mv /Y ./Assets/Samples.meta ./Packages/com.unity.inputsystem"),
2929
}
3030
}
3131
}

0 commit comments

Comments
 (0)