commit: 63c0a5206749e34f6b37065dc2870eac51a0acde
parent 591959924fa8de282f3d11983de6cf19c50f5af0
Author: Gábor Stefanik <netrolller.3d@gmail.com>
Date: Mon, 25 Dec 2023 11:09:51 +0100
Fix external & distfiles directory paths for CI
Diffstat:
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/.github/workflows/bwrap.yml b/.github/workflows/bwrap.yml
@@ -30,7 +30,7 @@ jobs:
uses: actions/cache/restore@v3
with:
path: |
- externals/distfiles
+ distfiles
key: cache-${{ hashFiles('steps/*/sources') }}
- name: Get sources
if: steps.cache.outputs.cache-hit != 'true'
@@ -40,7 +40,7 @@ jobs:
uses: actions/cache/save@v3
with:
path: |
- externals/distfiles
+ distfiles
key: cache-${{ hashFiles('steps/*/sources') }}
- name: Run bootstrap
run: ./rootfs.py --bwrap --external-sources --build-kernels --preserve --cores 2 --internal-ci pass1
@@ -83,7 +83,7 @@ jobs:
uses: actions/cache/restore@v3
with:
path: |
- externals/distfiles
+ distfiles
key: cache-${{ hashFiles('steps/*/sources') }}
- name: Get sources
if: steps.cache.outputs.cache-hit != 'true'
@@ -93,7 +93,7 @@ jobs:
uses: actions/cache/save@v3
with:
path: |
- externals/distfiles
+ distfiles
key: cache-${{ hashFiles('steps/*/sources') }}
- name: Run bootstrap
run: ./rootfs.py --bwrap --external-sources --build-kernels --preserve --cores 2 --internal-ci pass2
@@ -102,7 +102,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: internal_packages_pass2
- path: tmp/externals/repo/**
+ path: tmp/external/repo/**
pass3:
name: Run remaining builds under bubblewrap
@@ -129,13 +129,13 @@ jobs:
uses: actions/download-artifact@v3
with:
name: internal_packages_pass2
- path: tmp/externals/repo-preseeded/
+ path: tmp/external/repo-preseeded/
- name: Query cache for sources
id: cache
uses: actions/cache/restore@v3
with:
path: |
- externals/distfiles
+ distfiles
key: cache-${{ hashFiles('steps/*/sources') }}
- name: Get sources
if: steps.cache.outputs.cache-hit != 'true'
@@ -145,7 +145,7 @@ jobs:
uses: actions/cache/save@v3
with:
path: |
- externals/distfiles
+ distfiles
key: cache-${{ hashFiles('steps/*/sources') }}
- name: Run bootstrap
run: ./rootfs.py --bwrap --external-sources --build-kernels --preserve --cores 2 --internal-ci pass3
@@ -154,4 +154,4 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: packages
- path: tmp/externals/repo/**
+ path: tmp/external/repo/**