-
Notifications
You must be signed in to change notification settings - Fork 7
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
add go wasi policies #136
Merged
Merged
add go wasi policies #136
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 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 |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Build and release a Kubewarden policy written in Go targeting KW WASI policy mode | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
oci-target: | ||
type: string | ||
required: true | ||
artifacthub: | ||
description: "check artifacthub-pkg.yml for submission to ArtifactHub" | ||
required: false | ||
type: boolean | ||
default: true | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Install dependencies | ||
uses: kubewarden/github-actions/policy-gh-action-dependencies@v3.3.5 | ||
- uses: actions/checkout@v4 | ||
with: | ||
# until https://github.com/actions/checkout/pull/579 is released | ||
fetch-depth: 0 | ||
- id: calculate-version | ||
# skip when releasing :latest from main, versions will not match | ||
if: startsWith(github.ref, 'refs/tags/v') && inputs.artifacthub | ||
# obtain latest tag. Here it must be the current release tag | ||
run: echo "version=$(git describe --tags --abbrev=0 | cut -c2-)" >> $GITHUB_OUTPUT | ||
shell: bash | ||
- name: Check that artifacthub-pkg.yml is up-to-date | ||
# skip when releasing :latest from main, versions will not match | ||
if: startsWith(github.ref, 'refs/tags/v') && inputs.artifacthub | ||
uses: kubewarden/github-actions/check-artifacthub@v3.3.5 | ||
with: | ||
version: ${{ steps.calculate-version.outputs.version }} | ||
- name: Build and annotate policy | ||
uses: kubewarden/github-actions/policy-build-go-wasi@v3.3.5 | ||
- name: Run e2e tests | ||
run: | | ||
make e2e-tests | ||
- name: Release | ||
uses: kubewarden/github-actions/policy-release@v3.3.5 | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
oci-target: ${{ inputs.oci-target }} | ||
push-artifacthub: | ||
# skip when releasing :latest from main, versions will not match | ||
if: startsWith(github.ref, 'refs/tags/v') && inputs.artifacthub | ||
needs: release | ||
permissions: | ||
# Give the default GITHUB_TOKEN write permission to commit and push the | ||
# added or changed files to the repository. | ||
contents: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Push artifacthub files to artifacthub branch | ||
uses: kubewarden/github-actions/push-artifacthub@v3.3.5 |
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
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,69 @@ | ||
name: Tests and linters | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
artifacthub: | ||
description: "check artifacthub-pkg.yml for submission to ArtifactHub" | ||
required: false | ||
type: boolean | ||
default: true | ||
secrets: {} | ||
|
||
jobs: | ||
unit-tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: setup Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.21" | ||
|
||
- name: run Go unit tests | ||
run: make test | ||
|
||
e2e-tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install dependencies | ||
uses: kubewarden/github-actions/policy-gh-action-dependencies@v3.3.5 | ||
- name: Build and annotate policy | ||
with: | ||
generate-sbom: false | ||
uses: kubewarden/github-actions/policy-build-go-wasi@v3.3.5 | ||
- name: Run e2e tests | ||
run: make e2e-tests | ||
|
||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.21" | ||
- uses: actions/checkout@v4 | ||
- name: golangci-lint | ||
uses: golangci/golangci-lint-action@aaa42aa0628b4ae2578232a66b541047968fac86 # v6.1.0 | ||
with: | ||
version: "latest" | ||
|
||
check-artifacthub: | ||
if: ${{ inputs.artifacthub }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
# until https://github.com/actions/checkout/pull/579 is released | ||
fetch-depth: 0 | ||
- name: Install kwctl | ||
uses: kubewarden/github-actions/kwctl-installer@v3.3.5 | ||
- id: calculate-version | ||
run: echo "version=$(git describe --tags --abbrev=0 | cut -c2-)" >> $GITHUB_OUTPUT | ||
shell: bash | ||
- name: Check that artifacthub-pkg.yml is up-to-date | ||
uses: kubewarden/github-actions/check-artifacthub@v3.3.5 | ||
with: | ||
version: ${{ steps.calculate-version.outputs.version }} | ||
check_version: false # must match a git tag that hasn't been created yet, so let's ignore until then |
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
Oops, something went wrong.
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.
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.
this was merged
but unfortunately, there is this bug actions/checkout#579 (comment)