-
Notifications
You must be signed in to change notification settings - Fork 260
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 #1773 from Nordix/lentzi90/release-0.5-pipeline
🌱 [backport] workflow pipeline with unit tests
- Loading branch information
Showing
7 changed files
with
91 additions
and
56 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
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 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
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,44 @@ | ||
name: E2E Test pipeline | ||
|
||
on: | ||
pull_request: | ||
types: [opened, edited, synchronize, reopened, ready_for_review] | ||
branches: | ||
- 'main' | ||
- 'release-*' | ||
paths-ignore: | ||
- '**/*.md' | ||
- 'docs/**' | ||
- '.gitignore' | ||
- 'LICENSE' | ||
- 'SECURITY_CONTACTS' | ||
- 'DCO' | ||
- 'OWNERS' | ||
|
||
permissions: {} | ||
|
||
jobs: | ||
golangci-lint: | ||
if: github.event.pull_request.draft == false | ||
uses: ./.github/workflows/golangci-lint.yml | ||
|
||
unit: | ||
if: github.event.pull_request.draft == false | ||
uses: ./.github/workflows/unit.yml | ||
|
||
e2e-fixture-test: | ||
needs: [golangci-lint, unit] | ||
uses: ./.github/workflows/e2e-fixture-test.yml | ||
|
||
e2e-test: | ||
needs: [golangci-lint, unit] | ||
strategy: | ||
# Avoid wasting CI resources | ||
fail-fast: true | ||
matrix: | ||
bmc-protocol: | ||
- redfish-virtualmedia | ||
- ipmi | ||
uses: ./.github/workflows/e2e-test.yml | ||
with: | ||
bmc-protocol: ${{ matrix.bmc-protocol }} |
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,25 @@ | ||
name: unit | ||
|
||
on: | ||
workflow_call: | ||
|
||
# Remove all permissions from GITHUB_TOKEN except metadata. | ||
permissions: {} | ||
|
||
jobs: | ||
golangci: | ||
name: unit | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 | ||
- name: Calculate go version | ||
id: vars | ||
run: echo "go_version=$(make go-version)" >> $GITHUB_OUTPUT | ||
- name: Set up Go | ||
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1 | ||
with: | ||
go-version: ${{ steps.vars.outputs.go_version }} | ||
- name: Run unit tests | ||
run: make -e unit-cover | ||
env: | ||
TEST_FLAGS: "-v" |