-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: optimize jobs for using PS6 runners
PS6 runners are better suited to longer running jobs due to turn around time needed for refreshing a runner. Currently 15-30 minutes each. Small jobs will move back to using github runners to speed up the overall time for github actions to take. Tests requiring the build job, are moved to the same workflow to reduce the number of times we run the build job. Integration tests will be run on PS6 runners using a test parallelization of 10.
- Loading branch information
Showing
8 changed files
with
201 additions
and
302 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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 |
---|---|---|
@@ -1,16 +1,18 @@ | ||
name: "CLA check" | ||
name: "Static Analysis" | ||
on: [pull_request, workflow_dispatch] | ||
|
||
permissions: | ||
contents: read | ||
|
||
# This task runs solo has it doesn't need to be run as often. | ||
jobs: | ||
cla-check: | ||
permissions: | ||
pull-requests: write # for canonical/has-signed-canonical-cla to create & update comments | ||
runs-on: [self-hosted, jammy] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check if CLA signed | ||
uses: canonical/[email protected] | ||
with: | ||
accept-existing-contributors: true | ||
|
This file contains 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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.