Skip to content

Commit fed95f2

Browse files
Enable ARM integration tests on nightly CI (#491)
ARM integration tests were disabled on nightly CI, PR CI, and release CI/CD in #244 to save costs (on GitHub-hosted ARM runners) while waiting for IS-hosted ARM runner stabilization Re-enable GitHub-hosted ARM runners only on nightly CI
1 parent 58c604c commit fed95f2

File tree

5 files changed

+24
-19
lines changed

5 files changed

+24
-19
lines changed

.github/workflows/ci.yaml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222
jobs:
2323
lint:
2424
name: Lint
25-
uses: canonical/data-platform-workflows/.github/workflows/lint.yaml@v13.3.5
25+
uses: canonical/data-platform-workflows/.github/workflows/lint.yaml@v14.0.0
2626

2727
unit-test:
2828
name: Unit test charm
@@ -42,7 +42,7 @@ jobs:
4242

4343
build:
4444
name: Build charm
45-
uses: canonical/data-platform-workflows/.github/workflows/build_charm.yaml@v13.3.5
45+
uses: canonical/data-platform-workflows/.github/workflows/build_charm.yaml@v14.0.0
4646
with:
4747
cache: true
4848

@@ -58,12 +58,17 @@ jobs:
5858
allure_on_amd64: true
5959
architecture:
6060
- amd64
61+
include:
62+
- juju:
63+
agent: 3.1.8 # renovate: latest juju 3
64+
allure_on_amd64: true
65+
architecture: arm64
6166
name: Integration test charm | ${{ matrix.juju.agent }} | ${{ matrix.architecture }}
6267
needs:
6368
- lint
6469
- unit-test
6570
- build
66-
uses: canonical/data-platform-workflows/.github/workflows/integration_test_charm.yaml@v13.3.5
71+
uses: canonical/data-platform-workflows/.github/workflows/integration_test_charm.yaml@v14.0.0
6772
with:
6873
artifact-prefix: ${{ needs.build.outputs.artifact-prefix }}
6974
architecture: ${{ matrix.architecture }}

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ jobs:
2424

2525
build:
2626
name: Build charm
27-
uses: canonical/data-platform-workflows/.github/workflows/build_charm.yaml@v13.3.5
27+
uses: canonical/data-platform-workflows/.github/workflows/build_charm.yaml@v14.0.0
2828

2929
release:
3030
name: Release charm
3131
needs:
3232
- ci-tests
3333
- build
34-
uses: canonical/data-platform-workflows/.github/workflows/release_charm.yaml@v13.3.5
34+
uses: canonical/data-platform-workflows/.github/workflows/release_charm.yaml@v14.0.0
3535
with:
3636
channel: 14/edge
3737
artifact-prefix: ${{ needs.build.outputs.artifact-prefix }}

.github/workflows/sync_issue_to_jira.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
sync:
1111
name: Sync GitHub issue to Jira
12-
uses: canonical/data-platform-workflows/.github/workflows/sync_issue_to_jira.yaml@v13.3.5
12+
uses: canonical/data-platform-workflows/.github/workflows/sync_issue_to_jira.yaml@v14.0.0
1313
with:
1414
jira-base-url: https://warthogs.atlassian.net
1515
jira-project-key: DPE

poetry.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ optional = true
6666

6767
[tool.poetry.group.integration.dependencies]
6868
pytest = "^8.2.0"
69-
pytest-github-secrets = {git = "https://github.com/canonical/data-platform-workflows", tag = "v13.3.5", subdirectory = "python/pytest_plugins/github_secrets"}
69+
pytest-github-secrets = {git = "https://github.com/canonical/data-platform-workflows", tag = "v14.0.0", subdirectory = "python/pytest_plugins/github_secrets"}
7070
pytest-operator = "^0.35.0"
71-
pytest-operator-cache = {git = "https://github.com/canonical/data-platform-workflows", tag = "v13.3.5", subdirectory = "python/pytest_plugins/pytest_operator_cache"}
72-
pytest-operator-groups = {git = "https://github.com/canonical/data-platform-workflows", tag = "v13.3.5", subdirectory = "python/pytest_plugins/pytest_operator_groups"}
71+
pytest-operator-cache = {git = "https://github.com/canonical/data-platform-workflows", tag = "v14.0.0", subdirectory = "python/pytest_plugins/pytest_operator_cache"}
72+
pytest-operator-groups = {git = "https://github.com/canonical/data-platform-workflows", tag = "v14.0.0", subdirectory = "python/pytest_plugins/pytest_operator_groups"}
7373
# renovate caret doesn't work: https://github.com/renovatebot/renovate/issues/26940
7474
juju = "<=3.4.0.0"
7575
boto3 = "*"
@@ -78,7 +78,7 @@ landscape-api-py3 = "^0.9.0"
7878
mailmanclient = "^3.3.5"
7979
psycopg2-binary = "^2.9.9"
8080
allure-pytest = "^2.13.5"
81-
allure-pytest-collection-report = {git = "https://github.com/canonical/data-platform-workflows", tag = "v13.3.5", subdirectory = "python/pytest_plugins/allure_pytest_collection_report"}
81+
allure-pytest-collection-report = {git = "https://github.com/canonical/data-platform-workflows", tag = "v14.0.0", subdirectory = "python/pytest_plugins/allure_pytest_collection_report"}
8282

8383
# Testing tools configuration
8484
[tool.coverage.run]

0 commit comments

Comments
 (0)