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
2 changes: 1 addition & 1 deletion bicep/mainTemplate.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ param insidersBuild bool = false
// build.sh will override this, but for development please set this yourself as a parameter
param branch string = 'main'
// This needs to be updated on each release. Our Cloud.Project records require a release tag
param projectVersion string = '2026.03.10'
param projectVersion string = '2026.04.08'
// Must be updated with each Open OnDemand release
param oodProjectVersion string = '1.1.4'
//Internal developer use only: set true use custom CycleCloud release build
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -e
# This script builds the ARM template and UI definition for the marketplace solution
cd $(dirname $0)/
VERSION="2026.03.10"
VERSION="2026.04.08"

THIS_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

Expand Down
2 changes: 1 addition & 1 deletion project.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[project]
name = ccw
label = Workspace for Slurm
version = 2026.03.10
version = 2026.04.08
type = scheduler
2 changes: 1 addition & 1 deletion uidefinitions/createUiDefinition.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"parameters": {
"config": {
"basics": {
"description": "Version **2026.03.10**: [Release Notes](https://learn.microsoft.com/azure/cyclecloud/release-notes/ccws/release-notes)",
"description": "Version **2026.04.08**: [Release Notes](https://learn.microsoft.com/azure/cyclecloud/release-notes/ccws/release-notes)",
"resourceGroup": {
"visible": false
},
Expand Down
2 changes: 1 addition & 1 deletion util/entra_predeploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ if [ -n "${SERVICE_MANAGEMENT_REFERENCE}" ]; then
DEPLOYMENT_PARAMS="${DEPLOYMENT_PARAMS} serviceManagementReference=${SERVICE_MANAGEMENT_REFERENCE}"
fi

az deployment group create -g $ENTRA_MI_RESOURCE_GROUP --template-uri https://raw.githubusercontent.com/Azure/cyclecloud-slurm-workspace/refs/tags/2026.03.10/bicep/entra/ccwEntraApp.json --parameters ${DEPLOYMENT_PARAMS} --name ${ENTRA_DEPLOYMENT_NAME}
az deployment group create -g $ENTRA_MI_RESOURCE_GROUP --template-uri https://raw.githubusercontent.com/Azure/cyclecloud-slurm-workspace/refs/tags/2026.04.08/bicep/entra/ccwEntraApp.json --parameters ${DEPLOYMENT_PARAMS} --name ${ENTRA_DEPLOYMENT_NAME}

ENTRA_TENANT_ID=$(az deployment group show --name $ENTRA_DEPLOYMENT_NAME --resource-group $ENTRA_MI_RESOURCE_GROUP --query properties.outputs.ccwEntraClientTenantId.value -o tsv)
ENTRA_CLIENT_ID=$(az deployment group show --name $ENTRA_DEPLOYMENT_NAME --resource-group $ENTRA_MI_RESOURCE_GROUP --query properties.outputs.ccwEntraClientAppId.value -o tsv)
Expand Down
Loading