Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[do not merge] add workflow for arm64 #100

Draft
wants to merge 12 commits into
base: main
Choose a base branch
from
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
19 changes: 19 additions & 0 deletions .github/workflows/arm64.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Pack charm for arm64!

on:
pull_request:

jobs:
arm64:
name: Pack charm
runs-on: self-hosted-arm64-large
steps:
- name: Show architecture
run: |
uname -m
- uses: actions/[email protected]
- name: Pack charm
run: |
sudo snap install charmcraft --classic --channel latest/stable
lxd init --auto
charmcraft pack -v
10 changes: 0 additions & 10 deletions .github/workflows/auto_update_libs.yaml

This file was deleted.

9 changes: 0 additions & 9 deletions .github/workflows/bot_pr_approval.yaml

This file was deleted.

12 changes: 0 additions & 12 deletions .github/workflows/comment.yaml

This file was deleted.

3 changes: 2 additions & 1 deletion .github/workflows/integration_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
integration-tests:
uses: canonical/operator-workflows/.github/workflows/integration_test.yaml@main
uses: canonical/operator-workflows/.github/workflows/integration_test.yaml@arm64
secrets: inherit
with:
channel: 1.28-strict/stable
Expand All @@ -19,3 +19,4 @@ jobs:
juju-channel: 3.1/stable
self-hosted-runner: true
self-hosted-runner-label: "xlarge"
arm64: true
11 changes: 0 additions & 11 deletions .github/workflows/issues.yaml

This file was deleted.

27 changes: 0 additions & 27 deletions .github/workflows/promote_charm.yaml

This file was deleted.

13 changes: 0 additions & 13 deletions .github/workflows/publish_charm.yaml

This file was deleted.

3 changes: 2 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ on:

jobs:
unit-tests:
uses: canonical/operator-workflows/.github/workflows/test.yaml@main
uses: canonical/operator-workflows/.github/workflows/test.yaml@arm64
secrets: inherit
with:
self-hosted-runner: true
self-hosted-runner-label: "edge"
arm64: true
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ A [Juju](https://juju.is/) [charm](https://juju.is/docs/olm/charmed-operators)
deploying and managing [Jenkins](https://jenkins.io/) on Kubernetes. Jenkins is an open source
automation server, providing plugins to support building, deploying and automating any project.

Jenkins is an extendable continuous integration server that monitors executions of repeated jobs.
Jenkins is an extendable continuous integration server that monitors executions of repeated jobs.
The focus of Jenkins is the building/testing of software projects continuously, and monitoring
executions of externally-run jobs. More information at http://jenkins-ci.org/.

Expand Down
Loading