-
Notifications
You must be signed in to change notification settings - Fork 0
Fixes and improvements to github role
#4
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
Merged
Merged
Changes from all commits
Commits
Show all changes
44 commits
Select commit
Hold shift + click to select a range
5b361ed
feat: add support for adjusting kayobe inputs
jackhodgkiss e559e46
feat: build image on `workflow_dispatch`
jackhodgkiss ad5243e
feat: push latest and SHA tagged images
jackhodgkiss 561c6ef
feat: bump `image` used when building kayobe image
jackhodgkiss 851b23f
feat: add `github_image_tag` variable
jackhodgkiss 678c768
fix: add missing `github_` prefix on kayobe args
jackhodgkiss 0a16b25
feat: add missing kayobe arguments
jackhodgkiss 6e2a105
feat: add support for inline buildx config
jackhodgkiss 69a122a
feat: remove redundant `arguments`
jackhodgkiss 8299d84
feat: reduce duplication `env` arguments
jackhodgkiss 419fbd1
feat: reduce excess `workflow_dispatch` arguments
jackhodgkiss ae573f8
fix: set `RALLY_DOCKER_` using existing vars
jackhodgkiss c40c184
fix: add missing newline
jackhodgkiss 3a541ae
fix: set permissions to write for `packages`
jackhodgkiss 73a17b1
feat: add support for defining `timeout-minutes`
jackhodgkiss 75581e8
feat: add workflow to test collection
jackhodgkiss fc24b87
fix: add `!unsafe` on vars to avoid eval
jackhodgkiss 37415d6
feat: add support for collecting test artifacts
jackhodgkiss b0a4d90
feat: update documentation
jackhodgkiss 6893622
Use separate directories for building and running
technowhizz 02312aa
Pin buildkit and buildx versions
technowhizz 4b8b297
Add flag to disable provenance
technowhizz 796a275
Update roles/github/README.md
technowhizz bff6590
Update roles/github/defaults/main.yml
technowhizz e6654e4
Update roles/github/defaults/main.yml
technowhizz 1a77ebc
Merge pull request #6 from stackhpc/provenance
jackhodgkiss 1e333f6
Merge pull request #5 from stackhpc/different-dirs
jackhodgkiss f58b587
fix: move `path` under `with`
jackhodgkiss f522fda
feat: allow for `buildx` to be toggled on or off
jackhodgkiss 45a3982
feat: provide control over kayobe base image used
jackhodgkiss d600947
fix: `=` not `:`
jackhodgkiss 8087abb
feat: adjust permissions for workflows
jackhodgkiss 297695e
fix: resolve issue with tempest logging in with `Jinja`
jackhodgkiss d9619a2
feat: provide greater control over `packages` permissions
jackhodgkiss 10451b8
feat: add basic `concurrency`
jackhodgkiss ed93f14
fix: explicitly set `tempest` concurrency group
jackhodgkiss 976f00b
feat: provide control over tempest test suites.
jackhodgkiss 51b5667
fix: remove unused variables
jackhodgkiss e19e57d
fix: request a token with `pull-request` write support
jackhodgkiss 3c960d4
fix: add `github_` prefix to variable
jackhodgkiss 4bb6629
feat: only set `pull-requests` to `write` when needed
jackhodgkiss 777cf7b
fix: add missing quotes
jackhodgkiss 748bd1b
fix: flatten `workflow.argument` for `pull-requests`
jackhodgkiss f20ebd4
feat: set `r/w` permissions for `contents`
jackhodgkiss File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| --- | ||
| name: Test stackhpc.kayobe_workflows collection | ||
| 'on': | ||
| pull_request: | ||
|
|
||
| jobs: | ||
| test: | ||
| name: Test github role | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Check out the codebase. | ||
| uses: actions/checkout@v3 | ||
|
|
||
| - name: Set up Python 3. | ||
| uses: actions/setup-python@v4 | ||
| with: | ||
| python-version: '3.x' | ||
|
|
||
| - name: Install Ansible | ||
| run: pip3 install ansible | ||
|
|
||
| - name: Test the playbook. | ||
| run: ansible-playbook tests/test.yml | ||
| env: | ||
| ANSIBLE_FORCE_COLOR: '1' | ||
|
|
||
| - name: Upload workflows produced | ||
| uses: actions/upload-artifact@v3 | ||
| with: | ||
| name: github_kayobe_workflows | ||
| path: tests/.github/workflows |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.