-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: build-base, doc improvement and test fixes (#232)
* test: fix false positive, assertion not being log due to log not found * feat: build on according architecture * docs: explain admin rights or higher for PAT * chore: remvoe ref to job start log template * Fix charm name in e2e test --------- Co-authored-by: Christopher Bartz <[email protected]>
- Loading branch information
Showing
6 changed files
with
34 additions
and
20 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -37,7 +37,7 @@ jobs: | |
uses: actions/cache@v4 | ||
id: cache-charm | ||
with: | ||
path: github-runner_ubuntu-22.04-amd64-arm64.charm | ||
path: github-runner_ubuntu-22.04-amd64.charm | ||
key: github-runner-charm-${{ hashFiles('**/*') }} | ||
|
||
- name: Setup LXD | ||
|
@@ -55,8 +55,8 @@ jobs: | |
- name: Upload github-runner Charm | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: dangerous-test-only-github-runner_ubuntu-22.04-amd64-arm64.charm | ||
path: github-runner_ubuntu-22.04-amd64-arm64.charm | ||
name: dangerous-test-only-github-runner_ubuntu-22.04-amd64.charm | ||
path: github-runner_ubuntu-22.04-amd64.charm | ||
|
||
run-id: | ||
name: Generate Run ID | ||
|
@@ -122,7 +122,7 @@ jobs: | |
- name: Download github-runner Charm | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: dangerous-test-only-github-runner_ubuntu-22.04-amd64-arm64.charm | ||
name: dangerous-test-only-github-runner_ubuntu-22.04-amd64.charm | ||
|
||
- name: Enable br_netfilter | ||
run: sudo modprobe br_netfilter | ||
|
@@ -133,12 +133,12 @@ jobs: | |
|
||
- name: Copy github-runner Charm | ||
run: | | ||
cp github-runner_ubuntu-22.04-amd64-arm64.charm /home/$USER/github-runner_ubuntu-22.04-amd64-arm64.charm | ||
cp github-runner_ubuntu-22.04-amd64.charm /home/$USER/github-runner_ubuntu-22.04-amd64.charm | ||
- name: Deploy github-runner Charm (Pull Request, Workflow Dispatch and Push) | ||
if: matrix.event.name == 'workflow_dispatch' || matrix.event.name == 'push' || matrix.event.name == 'pull_request' | ||
run: | | ||
juju deploy /home/$USER/github-runner_ubuntu-22.04-amd64-arm64.charm \ | ||
juju deploy /home/$USER/github-runner_ubuntu-22.04-amd64.charm \ | ||
${{ steps.runner-name.outputs.name }} \ | ||
--base [email protected] \ | ||
--config path=${{ secrets.E2E_TESTING_REPO }} \ | ||
|
@@ -200,7 +200,7 @@ jobs: | |
git remote add testing https://github.com/${TESTING_REPO}.git | ||
git push testing ${{ steps.runner-name.outputs.name }}:main | ||
juju deploy /home/$USER/github-runner_ubuntu-22.04-amd64-arm64.charm \ | ||
juju deploy /home/$USER/github-runner_ubuntu-22.04-amd64.charm \ | ||
${{ steps.runner-name.outputs.name }} \ | ||
--base [email protected] \ | ||
--config path=$TESTING_REPO \ | ||
|
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
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
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