-
Notifications
You must be signed in to change notification settings - Fork 50
Run tests against snapd stable #87
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
Open
valentindavid
wants to merge
1
commit into
canonical:main
Choose a base branch
from
valentindavid:valentindavid/check-with-stable
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+131
−88
Open
Changes from all commits
Commits
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,41 @@ | ||
| name: Tests main workflow | ||
|
|
||
| on: | ||
| workflow_call: | ||
| inputs: | ||
| snapd_branch: | ||
| required: true | ||
| type: string | ||
|
|
||
| jobs: | ||
| tests-main: | ||
| runs-on: self-hosted | ||
| env: | ||
| SNAP_BRANCH: ${{ inputs.snapd_branch }} | ||
| steps: | ||
| - name: Cleanup job workspace | ||
| id: cleanup-job-workspace | ||
| run: | | ||
| rm -rf "${{ github.workspace }}" | ||
| mkdir "${{ github.workspace }}" | ||
| - uses: actions/checkout@v2 | ||
| - uses: actions/download-artifact@v2 | ||
| with: | ||
| name: core-snap | ||
| path: "${{ github.workspace }}/core24.artifact" | ||
|
|
||
| - name: Run x86 tests | ||
| run: | | ||
| spread google-nested:tests/spread/main/ | ||
|
|
||
| - name: Run arm64 tests | ||
| run: | | ||
| spread google-nested-arm:tests/spread/main/ | ||
|
|
||
| - name: Discard spread workers | ||
| if: always() | ||
| run: | | ||
| shopt -s nullglob | ||
| for r in .spread-reuse.*.yaml; do | ||
| spread -discard -reuse-pid="$(echo "$r" | grep -o -E '[0-9]+')" | ||
| done |
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,71 @@ | ||
| name: Tests snapd workflow | ||
|
|
||
| on: | ||
| workflow_call: | ||
| inputs: | ||
| snapd_branch: | ||
| required: true | ||
| type: string | ||
|
|
||
| jobs: | ||
| tests-snapd: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Cleanup job workspace | ||
| id: cleanup-job-workspace | ||
| run: | | ||
| rm -rf "${{ github.workspace }}" | ||
| mkdir "${{ github.workspace }}" | ||
|
|
||
| - uses: actions/checkout@v2 | ||
| with: | ||
| path: core-base | ||
| - uses: actions/checkout@v2 | ||
| with: | ||
| repository: 'snapcore/snapd' | ||
| path: snapd | ||
| - uses: actions/download-artifact@v2 | ||
| with: | ||
| name: core-snap | ||
|
|
||
| - name: Install spread | ||
| run: curl -s https://storage.googleapis.com/snapd-spread-tests/spread/spread-amd64.tar.gz | sudo tar xzv -C /usr/bin | ||
|
|
||
| - name: Build image | ||
| working-directory: '${{ github.workspace }}' | ||
| run: | | ||
| PROJECT_PATH=$PWD/core-base | ||
| # For os.query and others | ||
| PATH=$PATH:$PROJECT_PATH/tests/lib/external/snapd-testing-tools/tools/ | ||
| . "core-base/tests/lib/prepare-utils.sh" | ||
|
|
||
| echo "************* INSTALLING DEPS *************" | ||
| install_base_deps | ||
|
|
||
| echo "************* DOWNLOADING SNAPS *************" | ||
| download_core24_snaps ${{ inputs.snapd_branch }} | ||
|
|
||
| echo "************* WRITING CLOUD-INIT CONFIG *************" | ||
| prepare_base_cloudinit | ||
|
|
||
| echo "************* BUILDING CORE24 IMAGE *************" | ||
| uc_snap="$(get_core_snap_name)" | ||
| mv core24.artifact "$uc_snap" | ||
| build_core24_image | ||
|
|
||
| echo "************* STARTING CORE24 VM *************" | ||
| start_snapd_core_vm '${{ github.workspace }}' | ||
|
|
||
| cd snapd | ||
|
|
||
| # add any test suites that should be tested here | ||
| SPREAD_EXTERNAL_ADDRESS=localhost:8022 spread external:ubuntu-core-24-64:tests/smoke/ | ||
|
|
||
| - name: Discard spread workers | ||
| if: always() | ||
| run: | | ||
| shopt -s nullglob | ||
| for r in .spread-reuse.*.yaml; do | ||
| spread -discard -reuse-pid="$(echo "$r" | grep -o -E '[0-9]+')" | ||
| done | ||
|
|
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
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for doing this! Looks nice, alternative idea for future times, is that you could use a test-matrix instead of defining identical targets where only a variable is changing:
See examples:
https://github.com/snapcore/core-testing-jobs/blob/main/.github/workflows/cdimage-nightly.yml
So you could do like this:
Even better, maybe you could even define the templates as as matrix variable, but I'm not sure that github would accept that, as I don't know the order of evaluation when the workflow is passed (it was a hell with azure actions).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That works, yes. We should do that in another PR. I am not totally yet convince we require a matrix here.