Skip to content

Commit e40f335

Browse files
authored
[AN-514] Release Latest version with Cromwell numerical release (#7734)
1 parent 6d0568a commit e40f335

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
* Add 30 GB default VM boot disk size to user-requested boot disk size; this ensures the VM has room for large user command Docker images.
1010
* Fix a bug that caused Cromwell to treat immediate preemptions as failures.
1111
* Automatically retry tasks that fail with transient Batch errors before the VM has started running (that is, before the task has cost the user money). These retries do not count against `maxRetries`.
12-
* Symlink to `/cromwell_root` - In LifeSciences, the Cromwell root directory that user scripts are run from is located at `/cromwell_root`, but in the Batch backend it has moved to `/mnt/disk/cromwell_root`. To ensure WDLs that rely on the original
13-
path don't break when run on the Batch, and to also maintain forward compatibility we have created a symlink between `/mnt/disk/cromwell_root` and `/cromwell_root`.
14-
* Fixed a bug that caused Cromwell to overestimate the workflow cost for Batch jobs that used preemptible machines.
12+
* Symlink to `/cromwell_root` - In LifeSciences, the Cromwell root directory that user scripts are run from is located at `/cromwell_root`, but in the Batch backend it has moved to `/mnt/disk/cromwell_root`. To ensure WDLs that rely on the original path don't break when run on the Batch, and to also maintain forward compatibility we have created a symlink between `/mnt/disk/cromwell_root` and `/cromwell_root`.
13+
* Fixed a bug that caused Cromwell to overestimate the workflow cost for Batch jobs that used preemptible machines.
1514
* Allocated more memory to the shared memory filesystem (`/dev/shm`) proportional to the machine size
1615

1716
### Other Changes
1817
* Removes a database index `METADATA_WORKFLOW_IDX` that is now redundant since the introduction of `IX_METADATA_ENTRY_WEU_MK`.
18+
* The `latest` tag will now point to the most recent numerical cromwell release rather than following the develop branch. This means that the `latest` tag will not be updated for pre-release versions of Cromwell.
1919

2020
## 88 Release Notes
2121

project/Publishing.scala

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,16 @@ object Publishing {
4242
// Looks like `85-443a6fc-SNAP`
4343
Seq(version.value)
4444
case Release =>
45-
// Looks like `85`, `85-443a6fc`
46-
Seq(cromwellVersion, version.value)
45+
// Looks like `85`, `85-443a6fc`, `latest`
46+
Seq(cromwellVersion, version.value, "latest")
4747
case Debug =>
4848
// Ordinary local build with debug stuff
4949
// Looks like `85-443a6fc-DEBUG`
5050
Seq(version.value)
5151
case Standard =>
5252
// Merge to `develop`
53-
// Looks like `85-443a6fc`, `latest`, `develop`
54-
// TODO: once we automate releases, `latest` should move to `Release`
55-
Seq(version.value, "latest", "develop")
53+
// Looks like `85-443a6fc`, `dev`, `develop`
54+
Seq(version.value, "dev", "develop")
5655
}
5756

5857
val versionsCsv = tags.mkString(",")

0 commit comments

Comments
 (0)