New workflow: different approach - fix2

This commit is contained in:
Xargon Wan 2022-04-30 18:31:52 +09:00
parent cce7c59c2f
commit 82f37091f7

View file

@ -43,6 +43,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
#needs: [Job1_-_Prepearing_enviornment] #needs: [Job1_-_Prepearing_enviornment]
steps: steps:
- uses: actions/checkout@v3
- name: Downloading sources - name: Downloading sources
if: steps.cache-cooker.outputs.cache-hit != 'true' if: steps.cache-cooker.outputs.cache-hit != 'true'
run: | run: |
@ -66,6 +67,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [Job2_-_Downloading_Sources] needs: [Job2_-_Downloading_Sources]
steps: steps:
- uses: actions/checkout@v3
- name: Bulding part 1 - Until RetroArch Cores - name: Bulding part 1 - Until RetroArch Cores
if: steps.cache-cooker.outputs.cache-hit != 'true' if: steps.cache-cooker.outputs.cache-hit != 'true'
run: | run: |
@ -89,6 +91,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [Job3_-_Building_part_1] needs: [Job3_-_Building_part_1]
steps: steps:
- uses: actions/checkout@v3
- name: Bulding part 1 - Until the end - name: Bulding part 1 - Until the end
if: steps.cache-cooker.outputs.cache-hit != 'true' if: steps.cache-cooker.outputs.cache-hit != 'true'
run: | run: |
@ -105,6 +108,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [Job4_-_Building_part_2] needs: [Job4_-_Building_part_2]
steps: steps:
- uses: actions/checkout@v3
- name: Finishing build - name: Finishing build
if: steps.cache-cooker.outputs.cache-hit != 'true' if: steps.cache-cooker.outputs.cache-hit != 'true'
run: | run: |
@ -121,6 +125,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [Job5_-_Finishing_build] needs: [Job5_-_Finishing_build]
steps: steps:
- uses: actions/checkout@v3
- name: Build bundle - name: Build bundle
if: steps.cache-cooker.outputs.cache-hit != 'true' if: steps.cache-cooker.outputs.cache-hit != 'true'
run: | run: |