Skip to content
Draft
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: 2 additions & 0 deletions .github/workflows/integration_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ jobs:
builder-runner-label: X64
pre-run-script: |
-c "./tests/integration/aproxy_prerouting_workaround.sh"
tmate-debug: true
tmate-timeout: 3000
allure-report:
if: ${{ !cancelled() && github.event_name == 'schedule' }}
needs:
Expand Down
3 changes: 3 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@

<!-- vale Canonical.007-Headings-sentence-case = NO -->

## [#206 Add resolute image support]
* Add resolute image support.

## [#198 Update integration tests](https://github.com/canonical/github-runner-image-builder-operator/pull/198) (2026-02-17)
* Update integration tests that were intentionally not done in #185.

Expand Down
2 changes: 2 additions & 0 deletions src/state.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,11 +137,13 @@ class BaseImage(str, Enum):
FOCAL: The focal ubuntu LTS image.
JAMMY: The jammy ubuntu LTS image.
NOBLE: The noble ubuntu LTS image.
RESOLUTE: The resolute ubuntu LTS image.
"""

FOCAL = "focal"
JAMMY = "jammy"
NOBLE = "noble"
RESOLUTE = "resolute"

def __str__(self) -> str:
"""Interpolate to string value.
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ def test_configs_fixture(
def image_configs_fixture():
"""The image configuration values used to parametrize image build."""
return ImageConfigs(
bases=("noble",),
bases=("resolute",),
)


Expand Down
Loading