-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: run integration tests with different tags in parallel
- Loading branch information
1 parent
e1c8162
commit 8704e41
Showing
2 changed files
with
91 additions
and
61 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 |
---|---|---|
|
@@ -8,17 +8,9 @@ on: | |
- main | ||
|
||
jobs: | ||
run-tests: | ||
run-linting-and-unit-tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# To wait for the existing test-build run to complete | ||
- name: Turnstyle | ||
uses: softprops/turnstyle@v1 | ||
with: | ||
same-branch-only: false | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.TOKEN }} | ||
|
||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
|
@@ -29,7 +21,7 @@ jobs: | |
with: | ||
go-version: 1.21.x | ||
|
||
- name: Run linting tests | ||
- name: Run linting | ||
id: update | ||
run: | | ||
make prepare | ||
|
@@ -41,6 +33,58 @@ jobs: | |
run: | | ||
make coverage-ci | ||
# TODO Display test report | ||
|
||
# - name: Notify Slack on Failure | ||
# uses: slackapi/[email protected] | ||
# if: failure() | ||
# with: | ||
# payload: | | ||
# { | ||
# "attachments": [ | ||
# { | ||
# "color": "#E92020", | ||
# "blocks": [ | ||
# { | ||
# "type": "section", | ||
# "text": { | ||
# "type": "mrkdwn", | ||
# "text": "@oncall-growth-eng! There has been a failure that needs your attention. :rotating_light:\n*GitHub Workflow Failure*\ngo-sdk/test-build\n*Workflow Run*\n https://github.com/lacework/go-sdk/actions/runs/${{ github.run_id }}" | ||
# } | ||
# } | ||
# ] | ||
# } | ||
# ] | ||
# } | ||
# env: | ||
# SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL_GROWTH_ENG_ALERTS }} | ||
# SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK | ||
|
||
run-integration-tests: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
# To run integration tests with different tags in parallel | ||
index: [0, 1, 2] | ||
steps: | ||
# To wait for the existing test-build run to complete to avoid running same integration tests at the same time | ||
- name: Turnstyle | ||
uses: softprops/turnstyle@v1 | ||
with: | ||
same-branch-only: false | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.TOKEN }} | ||
|
||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.ref }} | ||
|
||
- name: Setup Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: 1.21.x | ||
|
||
- name: Build cross-platform binaries | ||
run: | | ||
make build-cli-cross-platform | ||
|
@@ -55,37 +99,10 @@ jobs: | |
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y vim | ||
make integration-only | ||
# TODO Display test report | ||
|
||
- name: Notify Slack on Failure | ||
uses: slackapi/[email protected] | ||
if: failure() | ||
with: | ||
payload: | | ||
{ | ||
"attachments": [ | ||
{ | ||
"color": "#E92020", | ||
"blocks": [ | ||
{ | ||
"type": "section", | ||
"text": { | ||
"type": "mrkdwn", | ||
"text": "@oncall-growth-eng! There has been a failure that needs your attention. :rotating_light:\n*GitHub Workflow Failure*\ngo-sdk/test-build\n*Workflow Run*\n https://github.com/lacework/go-sdk/actions/runs/${{ github.run_id }}" | ||
} | ||
} | ||
] | ||
} | ||
] | ||
} | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL_GROWTH_ENG_ALERTS }} | ||
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK | ||
make integration-only-subset index=${{ matrix.index }} | ||
trigger-release: | ||
needs: run-tests | ||
needs: [run-linting-and-unit-tests, run-integration-tests] | ||
if: github.ref_name == 'main' | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
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