Skip to content

Commit

Permalink
ci: enable CI actions
Browse files Browse the repository at this point in the history
This adds another command in tox to generate a Charmhub token, which should be useful to regenerate it in an easier way.
  • Loading branch information
jedel1043 committed Aug 6, 2024
1 parent 39d75c5 commit 712b9bd
Show file tree
Hide file tree
Showing 8 changed files with 272 additions and 1 deletion.
70 changes: 70 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
# Copyright 2024 Canonical Ltd.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

name: Bug Report
description: File a bug report
labels: ["Type: Bug", "Status: Triage"]
body:
- type: markdown
attributes:
value: >
Thanks for taking the time to fill out this bug report! Before submitting your issue, please make
sure you are using the latest version of the charm. If not, please switch to the latest version of this charm
before posting your report to make sure it's not already solved.
- type: textarea
id: bug-description
attributes:
label: Bug Description
description: >
Provide a description of the issue you are facing. If applicable, add screenshots to help explain the problem.
validations:
required: true
- type: textarea
id: reproduction
attributes:
label: To Reproduce
description: >
Please provide a step-by-step instruction of how to reproduce the behaviour.
placeholder: |
1. `juju deploy ...`
2. `juju relate ...`
3. `juju status --relations`
validations:
required: true
- type: textarea
id: environment
attributes:
label: Environment
description: >
We need to know a bit more about the context in which you run the charm.
- Are you running Juju locally, on lxd, in multipass or on some other platform?
- What track and channel you deployed the charm from (ie. `latest/edge` or similar).
- Version of any applicable components, like the juju snap, the model controller, lxd, microk8s, and/or multipass.
validations:
required: true
- type: textarea
id: logs
attributes:
label: Relevant log output
description: >
Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
Fetch the logs using `juju debug-log --replay`. Additional details on how to retrieve logs are available in the juju
documentation at https://juju.is/docs/olm/juju-logs.
render: shell
validations:
required: true
- type: textarea
id: additional-context
attributes:
label: Additional context
23 changes: 23 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
## Description

> Provide a description of the purpose of this pull request, as well as its
motivation and context. Is it a new feature? A bug fix? Does it address an existing issue?

## How was the code tested?

> Describe the conditions under which the code has been tested.
> * Did you run the integration and units tests?
> * Did you write new tests? Where are they located in the repository?
> * Which undercloud did you use to perform the tests? LXD, vSphere, AWS, etc.
> * What operating system did you test the charms on? Ubuntu 22.04, Ubuntu 20.04, CentOS 7, etc.
## Related issues and/or tasks

> Link any related issues or project board tasks to this pull request.
## Checklist

- [ ] I am the author of these changes, or I have the rights to submit them.
- [ ] I have added the relevant changes to the README and/or documentation.
- [ ] I have self reviewed my own code.
- [ ] All requested changes and/or review comments have been resolved.
88 changes: 88 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
# Copyright 2024 Canonical Ltd.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

name: slurm charms tests
on:
workflow_call:
pull_request:


jobs:
inclusive-naming-check:
name: Inclusive naming check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run tests
uses: get-woke/woke-action@v0
with:
fail-on-error: true

lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: python3 -m pip install tox
- name: Run linters
run: tox -e lint

unit-test:
name: Unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: python3 -m pip install tox
- name: Run tests
run: tox -e unit

type-check:
name: Static type checking
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: python3 -m pip install tox
- name: Run tests
run: tox -e type

integration-test:
strategy:
fail-fast: true
matrix:
bases:
- [email protected]
name: Integration tests (LXD) | ${{ matrix.bases }}
runs-on: ubuntu-latest
needs:
- inclusive-naming-check
- lint
- unit-test
- type-check
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup operator environment
uses: charmed-kubernetes/actions-operator@main
with:
provider: lxd
juju-channel: 3.4/stable
- name: Run tests
run: tox run -e integration -- --charm-base=${{ matrix.bases }}
52 changes: 52 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# Copyright 2024 Canonical Ltd.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

name: Release to latest/edge

on:
push:
branches:
- main

jobs:
ci-tests:
uses: ./.github/workflows/ci.yaml

release-to-charmhub:
name: Release to CharmHub
needs:
- ci-tests
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
charm: [slurmctld, slurmd, slurmdbd, slurmrestd]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Select charmhub channel
uses: canonical/charming-actions/[email protected]
id: channel
- name: Install dependencies
run: python3 -m pip install tox
- name: Stage charm
run: tox -e stage -- ${{ matrix.charm }} --clean
- name: Upload charm to charmhub
uses: canonical/charming-actions/[email protected]
with:
credentials: "${{ secrets.CHARMCRAFT_AUTH }}"
github-token: "${{ secrets.GITHUB_TOKEN }}"
channel: "${{ steps.channel.outputs.name }}"
charm-path: "./_build/${{ matrix.charm }}"
tag-prefix: "${{ matrix.charm }}"
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ __pycache__/
version
.ruff_cache/
_build
slurm-charms.auth
2 changes: 1 addition & 1 deletion charms/slurmctld/charmcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ description: |
links:
contact: https://matrix.to/#/#hpc:ubuntu.com

issues:
issues:
- https://github.com/charmed-hpc/slurmctld-operator/issues

source:
Expand Down
22 changes: 22 additions & 0 deletions repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,9 @@ def main_cli():
stage_parser.add_argument("--dry-run", action="store_true", default=False, help="Dry run.")
stage_parser.set_defaults(func=stage_cli)

gen_token_parser = subparsers.add_parser("generate-token", help="Generate Charmhub token to publish charms.")
gen_token_parser.set_defaults(func=gen_token_cli)

clean_parser = subparsers.add_parser("clean", help="Clean charm(s).")
_add_charm_argument(clean_parser)
clean_parser.add_argument("--dry-run", action="store_true", default=False, help="Dry run.")
Expand Down Expand Up @@ -331,6 +334,25 @@ def stage_cli(
dry_run=dry_run,
)

def gen_token_cli(
slurm_charms: [str],
**kwargs,
):
"""Generate Charmhub token to publish charms."""
args = [
"charmcraft",
"login",
"--export=slurm-charms.auth"
] + [f"--charm={charm}" for charm in slurm_charms] + [
"--permission=package-manage-metadata",
"--permission=package-manage-releases",
"--permission=package-manage-revisions",
"--permission=package-view-metadata",
"--permission=package-view-releases",
"--permission=package-view-revisions",
"--ttl=7776000"
]
subprocess.run(args, check=True)

def clean_cli(
charms: list[SlurmCharm],
Expand Down
15 changes: 15 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@ deps = pyyaml
commands =
python3 {toxinidir}/repository.py -v fetch-lib {posargs}

[testenv:stage]
description = Stages all the specified slurm charms
basepython = python3
deps =
pyyaml
commands =
python3 {toxinidir}/repository.py -v stage {posargs}

[testenv:build]
description = Build all the specified slurm charms
basepython = python3
Expand Down Expand Up @@ -87,3 +95,10 @@ deps =
-r{toxinidir}/test-requirements.txt
commands =
python3 {toxinidir}/repository.py -v integration -- {posargs}

[testenv:generate-token]
basepython = python3
deps =
pyyaml
commands =
python3 {toxinidir}/repository.py -v generate-token

0 comments on commit 712b9bd

Please sign in to comment.