Skip to content

Commit

Permalink
This is an automated cherry-pick of tikv#8071
Browse files Browse the repository at this point in the history
close tikv#8070

Signed-off-by: ti-chi-bot <[email protected]>
  • Loading branch information
HuSharp authored and ti-chi-bot committed Sep 13, 2024
1 parent d76f55d commit 96593e2
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 8 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ jobs:
statics:
runs-on: ubuntu-latest
steps:
<<<<<<< HEAD
- uses: actions/setup-go@v2
with:
go-version: 1.18
Expand All @@ -22,6 +23,13 @@ jobs:
key: ${{ runner.os }}-golang-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-golang
=======
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.21'
>>>>>>> acbb9afaa (ci: transitioning action version from node 16 to node 20 (#8071))
- name: Make Check
run: |
make build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
add_labels:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v4
- uses: actions/github-script@v7
name: Add labels
with:
script: |
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/pd-docker-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,18 @@ jobs:
strategy:
fail-fast: true
steps:
<<<<<<< HEAD
- uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Checkout code
uses: actions/checkout@v2
=======
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.21'
>>>>>>> acbb9afaa (ci: transitioning action version from node 16 to node 20 (#8071))
- name: Make
run: make docker-image
21 changes: 16 additions & 5 deletions .github/workflows/pd-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,11 @@ jobs:
outputs:
job-total: 10
steps:
- uses: actions/setup-go@v3
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
<<<<<<< HEAD
go-version: "1.18.0"
- name: Checkout code
uses: actions/checkout@v2
Expand All @@ -39,6 +42,9 @@ jobs:
**/.tools
**/.dashboard_download_cache
key: ${{ runner.os }}-go-${{ matrix.worker_id }}-${{ hashFiles('**/go.sum') }}
=======
go-version: '1.21'
>>>>>>> acbb9afaa (ci: transitioning action version from node 16 to node 20 (#8071))
- name: Make Test
env:
WORKER_ID: ${{ matrix.worker_id }}
Expand All @@ -49,20 +55,25 @@ jobs:
mv covprofile covprofile_$WORKER_ID
sed -i "/failpoint_binding/d" covprofile_$WORKER_ID
- name: Upload coverage result ${{ matrix.worker_id }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: cover-reports
name: cover-reports-${{ matrix.worker_id }}
path: covprofile_${{ matrix.worker_id }}
report-coverage:
needs: chunks
runs-on: ubuntu-latest
steps:
- name: Checkout code
<<<<<<< HEAD
uses: actions/checkout@v2
=======
uses: actions/checkout@v4
>>>>>>> acbb9afaa (ci: transitioning action version from node 16 to node 20 (#8071))
- name: Download chunk report
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: cover-reports
pattern: cover-reports-*
merge-multiple: true
- name: Merge
env:
TOTAL_JOBS: ${{needs.chunks.outputs.job-total}}
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/tso-consistency-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,16 @@ jobs:
tso-consistency-test:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
<<<<<<< HEAD
go-version: "1.18.0"
- name: Checkout code
uses: actions/checkout@v2
=======
go-version: '1.21'
>>>>>>> acbb9afaa (ci: transitioning action version from node 16 to node 20 (#8071))
- name: Make TSO Consistency Test
run: make test-tso-consistency
8 changes: 7 additions & 1 deletion .github/workflows/tso-function-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,16 @@ jobs:
tso-function-test:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
<<<<<<< HEAD
go-version: "1.18.0"
- name: Checkout code
uses: actions/checkout@v2
=======
go-version: '1.21'
>>>>>>> acbb9afaa (ci: transitioning action version from node 16 to node 20 (#8071))
- name: Make TSO Function Test
run: make test-tso-function

0 comments on commit 96593e2

Please sign in to comment.