mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-12-01 10:05:41 +00:00
Second try on internal/global cache - fix3
This commit is contained in:
parent
13e217d9ca
commit
5cd1cafd42
17
.github/workflows/cooker.yml
vendored
17
.github/workflows/cooker.yml
vendored
|
@ -34,8 +34,9 @@ jobs:
|
||||||
id: extract_branch
|
id: extract_branch
|
||||||
|
|
||||||
- name: Generating build ID
|
- name: Generating build ID
|
||||||
id: buildID
|
id: generating-buildID
|
||||||
run: echo "${{ steps.extract_branch.outputs.branch }}-${{ steps.date.outputs.date }}"
|
outputs:
|
||||||
|
buildID: "${{ steps.extract_branch.outputs.branch }}-${{ steps.date.outputs.date }}"
|
||||||
|
|
||||||
Job2_-_Downloading_Sources:
|
Job2_-_Downloading_Sources:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -66,7 +67,7 @@ jobs:
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
path: /home/runner/work/RetroDECK
|
path: /home/runner/work/RetroDECK
|
||||||
key: ${{ jobs.job1.steps.buildID }}
|
key: ${{ jobs.Job1_-_Prepearing_enviornment.steps.buildID }}
|
||||||
|
|
||||||
# - name: Continuing with previous worklow cache
|
# - name: Continuing with previous worklow cache
|
||||||
# if: steps.cache-cooker.outputs.cache-hit == 'true'
|
# if: steps.cache-cooker.outputs.cache-hit == 'true'
|
||||||
|
@ -93,7 +94,7 @@ jobs:
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
path: /home/runner/work/RetroDECK
|
path: /home/runner/work/RetroDECK
|
||||||
key: ${{ jobs.job1.steps.buildID }}
|
key: ${{ jobs.Job1_-_Prepearing_enviornment.steps.buildID }}
|
||||||
|
|
||||||
- name: Initializing enviornment
|
- name: Initializing enviornment
|
||||||
#if: steps.cache-cooker.outputs.cache-hit != 'true'
|
#if: steps.cache-cooker.outputs.cache-hit != 'true'
|
||||||
|
@ -123,7 +124,7 @@ jobs:
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
path: /home/runner/work/RetroDECK
|
path: /home/runner/work/RetroDECK
|
||||||
key: ${{ jobs.job1.steps.buildID }}
|
key: ${{ jobs.Job1_-_Prepearing_enviornment.steps.buildID }}
|
||||||
|
|
||||||
- name: Initializing enviornment
|
- name: Initializing enviornment
|
||||||
#if: steps.cache-cooker.outputs.cache-hit != 'true'
|
#if: steps.cache-cooker.outputs.cache-hit != 'true'
|
||||||
|
@ -153,7 +154,7 @@ jobs:
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
path: /home/runner/work/RetroDECK
|
path: /home/runner/work/RetroDECK
|
||||||
key: ${{ jobs.job1.steps.buildID }}
|
key: ${{ jobs.Job1_-_Prepearing_enviornment.steps.buildID }}
|
||||||
|
|
||||||
- name: Initializing enviornment
|
- name: Initializing enviornment
|
||||||
#if: steps.cache-cooker.outputs.cache-hit != 'true'
|
#if: steps.cache-cooker.outputs.cache-hit != 'true'
|
||||||
|
@ -183,7 +184,7 @@ jobs:
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
path: /home/runner/work/RetroDECK
|
path: /home/runner/work/RetroDECK
|
||||||
key: ${{ jobs.job1.steps.buildID }}
|
key: ${{ jobs.Job1_-_Prepearing_enviornment.steps.buildID }}
|
||||||
|
|
||||||
- name: Initializing enviornment
|
- name: Initializing enviornment
|
||||||
#if: steps.cache-cooker.outputs.cache-hit != 'true'
|
#if: steps.cache-cooker.outputs.cache-hit != 'true'
|
||||||
|
@ -212,7 +213,7 @@ jobs:
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
path: /home/runner/work/RetroDECK
|
path: /home/runner/work/RetroDECK
|
||||||
key: ${{ jobs.job1.steps.buildID }}
|
key: ${{ jobs.Job1_-_Prepearing_enviornment.steps.buildID }}
|
||||||
|
|
||||||
- name: Get date for artifacts
|
- name: Get date for artifacts
|
||||||
id: date
|
id: date
|
||||||
|
|
Loading…
Reference in a new issue