mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2025-01-17 22:35:39 +00:00
New workflow: different approach - fix2
This commit is contained in:
parent
cce7c59c2f
commit
82f37091f7
5
.github/workflows/cooker.yml
vendored
5
.github/workflows/cooker.yml
vendored
|
@ -43,6 +43,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
#needs: [Job1_-_Prepearing_enviornment]
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Downloading sources
|
||||
if: steps.cache-cooker.outputs.cache-hit != 'true'
|
||||
run: |
|
||||
|
@ -66,6 +67,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
needs: [Job2_-_Downloading_Sources]
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Bulding part 1 - Until RetroArch Cores
|
||||
if: steps.cache-cooker.outputs.cache-hit != 'true'
|
||||
run: |
|
||||
|
@ -89,6 +91,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
needs: [Job3_-_Building_part_1]
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Bulding part 1 - Until the end
|
||||
if: steps.cache-cooker.outputs.cache-hit != 'true'
|
||||
run: |
|
||||
|
@ -105,6 +108,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
needs: [Job4_-_Building_part_2]
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Finishing build
|
||||
if: steps.cache-cooker.outputs.cache-hit != 'true'
|
||||
run: |
|
||||
|
@ -121,6 +125,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
needs: [Job5_-_Finishing_build]
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Build bundle
|
||||
if: steps.cache-cooker.outputs.cache-hit != 'true'
|
||||
run: |
|
||||
|
|
Loading…
Reference in a new issue