Skip to content
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

No fail fast for release #1258

Merged
merged 5 commits into from
May 16, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/manual-create-pd-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ jobs:
name: Create PD PR
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
branch: [master, release-5.3, release-5.4]
branch: [master, release-5.4, release-6.1]
steps:
- name: Check out PD code base
uses: actions/checkout@master
Expand All @@ -27,6 +28,9 @@ jobs:
run: |
go get -d "github.com/pingcap/tidb-dashboard@${{ github.event.inputs.release_version }}"
go mod tidy
cd tests/client
go mod tidy
cd ../..
make pd-server
go mod tidy
- name: Commit PD code base change
Expand Down Expand Up @@ -55,6 +59,8 @@ jobs:
body: |
### What problem does this PR solve?

Issue Number: ref #4257

Update TiDB Dashboard to ${{ github.event.inputs.release_version }}.

Upstream commit: https://github.com/${{ github.repository }}/commit/${{ github.sha }} .
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,9 @@ jobs:
runs-on: ubuntu-latest
needs: release
strategy:
fail-fast: false
matrix:
branch: [master, release-5.3, release-5.4]
branch: [master, release-5.4, release-6.1]
steps:
- name: Check out PD code base
uses: actions/checkout@master
Expand All @@ -103,6 +104,9 @@ jobs:
run: |
go get -d "github.com/pingcap/tidb-dashboard@${{ needs.release.outputs.release_version }}"
go mod tidy
cd tests/client
go mod tidy
cd ../..
make pd-server
go mod tidy
- name: Commit PD code base change
Expand Down Expand Up @@ -131,6 +135,8 @@ jobs:
body: |
### What problem does this PR solve?

Issue Number: ref #4257

This is an automatic updating PR for TiDB Dashboard. See #4257 for details.

This PR updates TiDB Dashboard to ${{ needs.release.outputs.release_version }} for upstream commit: https://github.com/${{ github.repository }}/commit/${{ github.sha }} .
Expand Down