mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-27 08:05:42 +00:00
New GitActions workflow for cooker - introduced jobs hierarchy
This commit is contained in:
parent
b613314191
commit
4f90613e08
6
.github/workflows/cooker.yml
vendored
6
.github/workflows/cooker.yml
vendored
|
@ -34,6 +34,7 @@ jobs:
|
||||||
|
|
||||||
Job2_-_Downloading_Sources:
|
Job2_-_Downloading_Sources:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
needs: [Job1_-_Prepearing_enviornment]
|
||||||
steps:
|
steps:
|
||||||
- name: Downloading sources
|
- name: Downloading sources
|
||||||
run: |
|
run: |
|
||||||
|
@ -41,6 +42,7 @@ jobs:
|
||||||
|
|
||||||
Job3_-_Building_part_1:
|
Job3_-_Building_part_1:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
needs: [Job2_-_Downloading_Sources]
|
||||||
steps:
|
steps:
|
||||||
- name: Bulding part 1 - Until RetroArch Cores
|
- name: Bulding part 1 - Until RetroArch Cores
|
||||||
run: |
|
run: |
|
||||||
|
@ -48,6 +50,7 @@ jobs:
|
||||||
|
|
||||||
Job4_-_Building_part_2:
|
Job4_-_Building_part_2:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
needs: [Job3_-_Building_part_1]
|
||||||
steps:
|
steps:
|
||||||
- name: Bulding part 1 - Until the end
|
- name: Bulding part 1 - Until the end
|
||||||
run: |
|
run: |
|
||||||
|
@ -55,6 +58,7 @@ jobs:
|
||||||
|
|
||||||
Job5_-_Finishing_build:
|
Job5_-_Finishing_build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
needs: [Job4_-_Building_part_2]
|
||||||
steps:
|
steps:
|
||||||
- name: Finishing build
|
- name: Finishing build
|
||||||
run: |
|
run: |
|
||||||
|
@ -62,6 +66,7 @@ jobs:
|
||||||
|
|
||||||
Job6_-_Build_bundle:
|
Job6_-_Build_bundle:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
needs: [Job5_-_Finishing_build]
|
||||||
steps:
|
steps:
|
||||||
- name: Build bundle
|
- name: Build bundle
|
||||||
run: |
|
run: |
|
||||||
|
@ -69,6 +74,7 @@ jobs:
|
||||||
|
|
||||||
Job7_-_Publishing_flatpak:
|
Job7_-_Publishing_flatpak:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
needs: [Job6_-_Build_bundle]
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: Get date for artifacts
|
- name: Get date for artifacts
|
||||||
|
|
Loading…
Reference in a new issue