Skip to content

Commit

Permalink
DEVEX-2432 build: support for Ubuntu 24.04 AEE (#1419)
Browse files Browse the repository at this point in the history
  • Loading branch information
wormsik authored Dec 4, 2024
1 parent b8a6549 commit 193367a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ Categories for each release: Added, Changed, Deprecated, Removed, Fixed, Securit

## Unreleased

### Added

* `dx build --remote` supports new Application Execution Environment based on Ubuntu 24.04

## [387.0] - beta

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/python/dxpy/scripts/dx_build_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ def _build_app_remote(mode, src_dir, publish=False, destination_override=None,

app_spec = _parse_app_spec(src_dir)
builder_versions = {"12.04": "", "14.04": "_trusty", "16.04": "_xenial",
"20.04": "_focal"}
"20.04": "_focal", "24.04": "_noble"}
release = app_spec['runSpec'].get('release')
# Remote builder app/applet for 16.04 version 1
if release == "16.04" and app_spec['runSpec'].get('version', '0') == '1':
Expand Down

0 comments on commit 193367a

Please sign in to comment.