mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
Merge pull request #15149 from serathius/linearizability-artifact-name
tests: Set artifact name based to avoid file override from different subruns
This commit is contained in:
commit
a794be89cb
@ -13,15 +13,18 @@ jobs:
|
|||||||
ref: main
|
ref: main
|
||||||
count: 100
|
count: 100
|
||||||
testTimeout: 200m
|
testTimeout: 200m
|
||||||
|
artifactName: test-main
|
||||||
test-35:
|
test-35:
|
||||||
uses: ./.github/workflows/linearizability-template.yaml
|
uses: ./.github/workflows/linearizability-template.yaml
|
||||||
with:
|
with:
|
||||||
ref: release-3.5
|
ref: release-3.5
|
||||||
count: 100
|
count: 100
|
||||||
testTimeout: 200m
|
testTimeout: 200m
|
||||||
|
artifactName: test-35
|
||||||
test-34:
|
test-34:
|
||||||
uses: ./.github/workflows/linearizability-template.yaml
|
uses: ./.github/workflows/linearizability-template.yaml
|
||||||
with:
|
with:
|
||||||
ref: release-3.4
|
ref: release-3.4
|
||||||
count: 100
|
count: 100
|
||||||
testTimeout: 200m
|
testTimeout: 200m
|
||||||
|
artifactName: test-34
|
||||||
|
@ -12,6 +12,9 @@ on:
|
|||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
default: '30m'
|
default: '30m'
|
||||||
|
artifactName:
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
permissions: read-all
|
permissions: read-all
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
@ -46,4 +49,5 @@ jobs:
|
|||||||
- uses: actions/upload-artifact@v2
|
- uses: actions/upload-artifact@v2
|
||||||
if: always()
|
if: always()
|
||||||
with:
|
with:
|
||||||
|
name: ${{ inputs.artifactName }}
|
||||||
path: /tmp/linearizability/*
|
path: /tmp/linearizability/*
|
||||||
|
1
.github/workflows/linearizability.yaml
vendored
1
.github/workflows/linearizability.yaml
vendored
@ -8,3 +8,4 @@ jobs:
|
|||||||
ref: ${{ github.ref }}
|
ref: ${{ github.ref }}
|
||||||
count: 15
|
count: 15
|
||||||
testTimeout: 30m
|
testTimeout: 30m
|
||||||
|
artifactName: test
|
||||||
|
Loading…
x
Reference in New Issue
Block a user