From 834131fca5dbed7ac246c71539e07ccc21d6ded6 Mon Sep 17 00:00:00 2001 From: Matthew Sandford Date: Mon, 25 Jan 2021 09:50:25 +0000 Subject: [PATCH 1/2] Upgrade to 15.0.0 --- .buildkite/nightly.steps.yaml | 2 +- LaunchSpatial.bat | 2 +- spatial/spatialos.json | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.buildkite/nightly.steps.yaml b/.buildkite/nightly.steps.yaml index d0285fdf..48e2b01b 100644 --- a/.buildkite/nightly.steps.yaml +++ b/.buildkite/nightly.steps.yaml @@ -37,7 +37,7 @@ env: GDK_REPOSITORY: "git@github.com:spatialos/UnrealGDK.git" MAIN_MAP_NAME: "Control_Small" SPATIAL_PROJECT_NAME: "unreal_gdk" - SPATIAL_RUNTIME_VERSION: "15.0.0-preview-8" ## the runtime version of SpatialOS + SPATIAL_RUNTIME_VERSION: "15.0.0" ## the runtime version of SpatialOS steps: - label: "generate-pipeline-steps" diff --git a/LaunchSpatial.bat b/LaunchSpatial.bat index 216fff97..e23f82d3 100644 --- a/LaunchSpatial.bat +++ b/LaunchSpatial.bat @@ -8,6 +8,6 @@ spatial worker build build-config rem To launch a local Spatial deployment with a different launch configuration, change the default_launch.json argument to the name of your configuration file, rem for example one_worker_test.json or two_worker_test.json. Similarly, you can specify a different snapshot than the default one by replacing the value of rem the --snapshot argument with the path to the snapshot you want to launch with. -spatial local launch default_launch.json --snapshot=snapshots/default.snapshot --runtime_version=0.4.3 +spatial local launch default_launch.json --snapshot=snapshots/default.snapshot --runtime_version=15.0.0 popd diff --git a/spatial/spatialos.json b/spatial/spatialos.json index 493b569f..9122c353 100644 --- a/spatial/spatialos.json +++ b/spatial/spatialos.json @@ -1,11 +1,11 @@ { "name": "your_project_name_here", "project_version": "0.0.1", - "sdk_version": "15.0.0-preview-8", + "sdk_version": "15.0.0", "dependencies": [ { "name": "standard_library", - "version": "15.0.0-preview-8" + "version": "15.0.0" } ] } From 9938d4a9fc1398c2097a9677e5400c102c890bd3 Mon Sep 17 00:00:00 2001 From: Matthew Sandford Date: Mon, 25 Jan 2021 10:37:56 +0000 Subject: [PATCH 2/2] Upgrade DeployGame --- DeployGame.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DeployGame.bat b/DeployGame.bat index acaef514..44e1d35a 100644 --- a/DeployGame.bat +++ b/DeployGame.bat @@ -14,7 +14,7 @@ set deploymentname=%gamename%%formatdate% cd spatial/ spatial build build-config || goto :error spatial cloud upload %deploymentname% --force || goto :error -spatial cloud launch %deploymentname% one_worker_test.json %deploymentname% --snapshot=snapshots/default.snapshot --cluster_region=eu --runtime_version=0.4.3 || goto :error +spatial cloud launch %deploymentname% one_worker_test.json %deploymentname% --snapshot=snapshots/default.snapshot --cluster_region=eu --runtime_version=15.0.0 || goto :error spatial project deployment tags add %deploymentname% dev_login || goto :error spatial project deployment tags add %deploymentname% status_lobby || goto :error