Stress test #431
This file contains hidden or 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
name: Stress test | |
on: | |
workflow_call: | |
inputs: | |
sha: | |
description: 'SHA to run against' | |
required: false | |
type: string | |
file_issue_branch: | |
description: 'Branch used in filed issues; if unset, no issues are filed' | |
required: false | |
type: string | |
go_version: | |
description: 'Go version' | |
required: false | |
default: '1.24' | |
type: string | |
workflow_dispatch: | |
inputs: | |
sha: | |
description: 'SHA to run against' | |
required: false | |
type: string | |
file_issue_branch: | |
description: 'Branch used in filed issues; if unset, no issues are filed' | |
required: false | |
type: string | |
go_version: | |
description: 'Go version' | |
required: false | |
default: '1.24' | |
type: string | |
jobs: | |
linux-stress: | |
name: linux-stress | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ inputs.sha || github.sha }} | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ inputs.go_version }} | |
- name: Run unit tests under stress | |
run: | | |
go install github.com/cockroachdb/stress@latest | |
scripts/stress.sh | |
- name: Post issue on failure | |
if: failure() && inputs.file_issue_branch != '' | |
id: create-or-update-unique-issue | |
uses: ./.github/actions/post-issue | |
with: | |
title: "${{ inputs.file_issue_branch }}: nightly ${{ github.job }} tests failed" | |
body: "The nightly ${{ github.job }} test run failed on ${{ inputs.sha }} (go${{ inputs.go_version }}). Please review the run [here](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})." | |
labels: "C-test-failure" |