Skip to content

Commit d907404

Browse files
authored
DEVEX-2566: Add support for OCI Ashburn region (#523)
* DEVEX-2566: Add support for OCI Ashburn region * Fix dxwdl_copy utility app version
1 parent 1bf5cf2 commit d907404

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

RELEASE_NOTES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
* Added support for new region in OCI Ashburn
6+
57
## 2.14.0 2025-07-03
68

79
* Added option `-executableCreationParallelism <int>`, the maximum number of platform executables that dxCompiler can

scripts/build_release.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
"aws:eu-west-2-g": "dxCompiler_Europe_London",
4141
"azure:uksouth-ofh": "dxCompiler_OFH_TRE_London",
4242
"aws:me-south-1": "dxCompiler_Bahrain",
43+
"oci:us-ashburn-1": "dxCompiler_Ashburn",
4344
}
4445

4546
# 1. Use the clone-asset app to copy the file into [region].

scripts/dxcompiler_copy/dxapp.json

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"title": "Copy File",
44
"summary": "Copy a file to a different region",
55
"dxapi": "1.0.0",
6-
"version": "0.0.7",
6+
"version": "0.1.0",
77
"billTo": "org-dnanexus_apps",
88
"developers": [
99
"org-dnanexus_apps"
@@ -113,10 +113,17 @@
113113
"instanceType": "azure:mem2_ssd1_v2_x2"
114114
}
115115
}
116+
},
117+
"oci:us-ashburn-1": {
118+
"systemRequirements": {
119+
"*": {
120+
"instanceType": "oci:mem1_ssd1_v3i_x2"
121+
}
122+
}
116123
}
117124
},
118125
"details": {
119-
"whatsNew": "* 0.0.7: Fixed instance types for Azure regions\n * 0.0.6: Added new Bahrain AWS region aws:me-south-1\n * 0.0.5: updated azure instances to v2 for OFH region\n * 0.0.3: Added new London OFH region\n * 0.0.2: Added new London region."
126+
"whatsNew": "* 0.1.0: Added new OCI Ashburn region \n * 0.0.7: Fixed instance types for Azure regions\n * 0.0.6: Added new Bahrain AWS region aws:me-south-1\n * 0.0.5: updated azure instances to v2 for OFH region\n * 0.0.3: Added new London OFH region\n * 0.0.2: Added new London region."
120127
},
121128
"access": {
122129
"network": [

scripts/multi_region_tests.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@
2929
"dxCompiler_London",
3030
"dxCompiler_Europe_London",
3131
"dxCompiler_OFH_TRE_London",
32-
"dxCompiler_Bahrain"]
32+
"dxCompiler_Bahrain",
33+
"dxCompiler_Ashburn"]
3334

3435
target_folder = "/release_test"
3536

0 commit comments

Comments
 (0)