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
18 changes: 0 additions & 18 deletions .yamato/publish_to_stevedore_linux.yml

This file was deleted.

19 changes: 0 additions & 19 deletions .yamato/publish_to_stevedore_osx.yml

This file was deleted.

17 changes: 14 additions & 3 deletions .yamato/publish_to_stevedore_public.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,20 @@
name: Publish To Stevedore (Public)

agent:
type: Unity::VM
image: platform-foundation/linux-ubuntu-18.04-mono-bokken:latest
flavor: b1.large

variables:
STEVEDORE_REPO: public

dependencies:
- .yamato/publish_to_stevedore_linux.yml
- .yamato/publish_to_stevedore_osx.yml
- .yamato/publish_to_stevedore_windows.yml
- .yamato/build_linux_x64.yml
- .yamato/build_osx_x64arm64.yml
- .yamato/build_windows_x86.yml
- .yamato/build_windows_x64.yml

commands:
- curl -sSo StevedoreUpload "$STEVEDORE_UPLOAD_TOOL_LINUX_X64_URL"
- chmod +x StevedoreUpload
- ./StevedoreUpload --version-len=12 --repo=$STEVEDORE_REPO --version="$GIT_REVISION" artifacts/unity/*
17 changes: 14 additions & 3 deletions .yamato/publish_to_stevedore_testing.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,20 @@
name: Publish To Stevedore (Testing)

agent:
type: Unity::VM
image: platform-foundation/linux-ubuntu-18.04-mono-bokken:latest
flavor: b1.large

variables:
STEVEDORE_REPO: testing

dependencies:
- .yamato/publish_to_stevedore_linux.yml
- .yamato/publish_to_stevedore_osx.yml
- .yamato/publish_to_stevedore_windows.yml
- .yamato/build_linux_x64.yml
- .yamato/build_osx_x64arm64.yml
- .yamato/build_windows_x86.yml
- .yamato/build_windows_x64.yml

commands:
- curl -sSo StevedoreUpload "$STEVEDORE_UPLOAD_TOOL_LINUX_X64_URL"
- chmod +x StevedoreUpload
- ./StevedoreUpload --version-len=12 --repo=$STEVEDORE_REPO --version="$GIT_REVISION" artifacts/unity/*
18 changes: 0 additions & 18 deletions .yamato/publish_to_stevedore_windows.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .yamato/scripts/build_windows_x64.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cmake .
cmake --build . --config Release
cd ../../
rem build subset library and core clr
build.cmd -subset clr+libs -a x64 -c release -ci
cmd /c build.cmd -subset clr+libs -a x64 -c release -ci
copy unity\unitygc\Release\unitygc.dll artifacts\bin\microsoft.netcore.app.runtime.win-x64\Release\runtimes\win-x64\native
copy artifacts\bin\unity-embed-host\Release\net6.0\unity-embed-host.dll artifacts\bin\microsoft.netcore.app.runtime.win-x64\Release\runtimes\win-x64\lib\net7.0
copy artifacts\bin\unity-embed-host\Release\net6.0\unity-embed-host.pdb artifacts\bin\microsoft.netcore.app.runtime.win-x64\Release\runtimes\win-x64\lib\net7.0
2 changes: 1 addition & 1 deletion .yamato/scripts/build_windows_x86.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cmake . -A Win32
cmake --build . --config Release
cd ../../
rem build subset library and core clr
build.cmd -subset clr+libs -a x86 -c release -ci
cmd /c build.cmd -subset clr+libs -a x86 -c release -ci
copy unity\unitygc\Release\unitygc.dll artifacts\bin\microsoft.netcore.app.runtime.win-x86\Release\runtimes\win-x86\native
copy artifacts\bin\unity-embed-host\Release\net6.0\unity-embed-host.dll artifacts\bin\microsoft.netcore.app.runtime.win-x86\Release\runtimes\win-x86\lib\net7.0
copy artifacts\bin\unity-embed-host\Release\net6.0\unity-embed-host.pdb artifacts\bin\microsoft.netcore.app.runtime.win-x86\Release\runtimes\win-x86\lib\net7.0