-
Notifications
You must be signed in to change notification settings - Fork 18.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46572 from crazy-max/ci-snapshotter
ci: split and use matrix to test containerd backed image store
- Loading branch information
Showing
6 changed files
with
534 additions
and
426 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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# reusable workflow | ||
name: .test-prepare | ||
|
||
# TODO: hide reusable workflow from the UI. Tracked in https://github.com/community/community/discussions/12025 | ||
|
||
on: | ||
workflow_call: | ||
outputs: | ||
matrix: | ||
description: Test matrix | ||
value: ${{ jobs.run.outputs.matrix }} | ||
|
||
jobs: | ||
run: | ||
runs-on: ubuntu-20.04 | ||
outputs: | ||
matrix: ${{ steps.set.outputs.matrix }} | ||
steps: | ||
- | ||
name: Checkout | ||
uses: actions/checkout@v3 | ||
- | ||
name: Create matrix | ||
id: set | ||
uses: actions/github-script@v6 | ||
with: | ||
script: | | ||
let matrix = ['graphdriver']; | ||
if ("${{ contains(github.event.pull_request.labels.*.name, 'containerd-integration') || github.event_name != 'pull_request' }}" == "true") { | ||
matrix.push('snapshotter'); | ||
} | ||
await core.group(`Set matrix`, async () => { | ||
core.info(`matrix: ${JSON.stringify(matrix)}`); | ||
core.setOutput('matrix', JSON.stringify(matrix)); | ||
}); |
Oops, something went wrong.