New GitActions workflow for cooker - introduced jobs hierarchy

This commit is contained in:
XargonWan 2022-04-30 10:49:29 +09:00
parent b613314191
commit 4f90613e08

View file

@ -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