-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: bypass the required status checks (#4611)
- Loading branch information
Showing
4 changed files
with
170 additions
and
134 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,12 @@ | ||
# This workflow is used to bypass the required status checks in merge queue. | ||
# cf. https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/troubleshooting-required-status-checks | ||
name: CLA | ||
on: | ||
merge_group: | ||
|
||
jobs: | ||
cla: | ||
name: license/cla | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: 'echo "No test required"' |
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,31 @@ | ||
# This workflow is used to bypass the required status checks. | ||
# cf. https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/troubleshooting-required-status-checks | ||
name: Test | ||
on: | ||
push: | ||
paths: | ||
- '**.md' | ||
- 'docs/**' | ||
- 'mkdocs.yml' | ||
- 'LICENSE' | ||
pull_request: | ||
paths: | ||
- '**.md' | ||
- 'docs/**' | ||
- 'mkdocs.yml' | ||
- 'LICENSE' | ||
jobs: | ||
test: | ||
name: Test | ||
runs-on: ${{ matrix.operating-system }} | ||
strategy: | ||
matrix: | ||
operating-system: [ubuntu-latest, windows-latest, macos-latest] | ||
steps: | ||
- run: 'echo "No test required"' | ||
|
||
integration: | ||
name: Integration Test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: 'echo "No test required"' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,17 @@ on: | |
push: | ||
branches: | ||
- main | ||
paths-ignore: | ||
- '**.md' | ||
- 'docs/**' | ||
- 'mkdocs.yml' | ||
- 'LICENSE' | ||
pull_request: | ||
paths-ignore: | ||
- '**.md' | ||
- 'docs/**' | ||
- 'mkdocs.yml' | ||
- 'LICENSE' | ||
merge_group: | ||
jobs: | ||
test: | ||
|
@@ -53,4 +63,120 @@ jobs: | |
if: matrix.operating-system == 'ubuntu-latest' | ||
|
||
- name: Run unit tests | ||
run: mage test:unit | ||
run: mage test:unit | ||
|
||
integration: | ||
name: Integration Test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version-file: go.mod | ||
|
||
- name: Install tools | ||
uses: aquaproj/[email protected] | ||
with: | ||
aqua_version: v1.25.0 | ||
|
||
- name: Run integration tests | ||
run: mage test:integration | ||
|
||
k8s-integration: | ||
name: K8s Integration Test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version-file: go.mod | ||
|
||
- name: Install tools | ||
uses: aquaproj/[email protected] | ||
with: | ||
aqua_version: v1.25.0 | ||
|
||
- name: Run k8s integration tests | ||
run: mage test:k8s | ||
|
||
module-test: | ||
name: Module Integration Test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version-file: go.mod | ||
|
||
- name: Install tools | ||
uses: aquaproj/[email protected] | ||
with: | ||
aqua_version: v1.25.0 | ||
|
||
- name: Run module integration tests | ||
shell: bash | ||
run: | | ||
mage test:module | ||
vm-test: | ||
name: VM Integration Test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version-file: go.mod | ||
- name: Install tools | ||
uses: aquaproj/[email protected] | ||
with: | ||
aqua_version: v1.25.0 | ||
- name: Run vm integration tests | ||
run: | | ||
mage test:vm | ||
build-test: | ||
name: Build Test | ||
runs-on: ${{ matrix.operating-system }} | ||
strategy: | ||
matrix: | ||
operating-system: [ubuntu-latest, windows-latest, macos-latest] | ||
env: | ||
DOCKER_CLI_EXPERIMENTAL: "enabled" | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version-file: go.mod | ||
|
||
- name: Determine GoReleaser ID | ||
id: goreleaser_id | ||
shell: bash | ||
run: | | ||
if [ "${{ matrix.operating-system }}" == "windows-latest" ]; then | ||
echo "id=--id build-windows" >> $GITHUB_OUTPUT | ||
elif [ "${{ matrix.operating-system }}" == "macos-latest" ]; then | ||
echo "id=--id build-macos --id build-bsd" >> $GITHUB_OUTPUT | ||
else | ||
echo "id=--id build-linux" >> $GITHUB_OUTPUT | ||
fi | ||
- name: Run GoReleaser | ||
uses: goreleaser/goreleaser-action@v4 | ||
with: | ||
version: v1.16.2 | ||
args: build --snapshot --clean --timeout 90m ${{ steps.goreleaser_id.outputs.id }} |