ci :update quickget-tests job names
This commit is contained in:
parent
590bc24347
commit
ed91628c29
|
@ -24,8 +24,8 @@ concurrency:
|
||||||
|
|
||||||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
||||||
jobs:
|
jobs:
|
||||||
job1:
|
list-supported:
|
||||||
name: All supported
|
name: List supported OS
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
# The type of runner that the job will run on
|
# The type of runner that the job will run on
|
||||||
#runs-on: ubuntu-latest
|
#runs-on: ubuntu-latest
|
||||||
|
@ -47,8 +47,8 @@ jobs:
|
||||||
path: results/supported.txt
|
path: results/supported.txt
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
|
|
||||||
job2:
|
list-os-info:
|
||||||
name: All info
|
name: List all OS info
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
@ -70,9 +70,9 @@ jobs:
|
||||||
path: results/infos.txt
|
path: results/infos.txt
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
|
|
||||||
job3:
|
list-all-urls:
|
||||||
needs: job1
|
needs: [list-supported]
|
||||||
name: All URLs
|
name: List all URLs
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
@ -100,8 +100,8 @@ jobs:
|
||||||
path: results/urls.txt
|
path: results/urls.txt
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
|
|
||||||
job4:
|
check-all-urls:
|
||||||
name: All checks
|
name: Check all URLs
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
@ -137,7 +137,7 @@ jobs:
|
||||||
path: results/failed.txt
|
path: results/failed.txt
|
||||||
|
|
||||||
job5:
|
job5:
|
||||||
needs: [job2, job3, job4]
|
needs: [list-os-info, list-all-urls, check-all-urls]
|
||||||
name: Uploading artifacts
|
name: Uploading artifacts
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
steps:
|
steps:
|
||||||
|
|
Loading…
Reference in New Issue