mirror of
https://github.com/usatiuk/ficus.git
synced 2025-10-28 16:17:51 +01:00
CI: don't override ccache dir
Some checks failed
Ficus build / iso (push) Has been cancelled
Ficus build / build-ficus-toolchain (push) Has been cancelled
Unit tests / build (push) Successful in 4m12s
Some checks failed
Ficus build / iso (push) Has been cancelled
Ficus build / build-ficus-toolchain (push) Has been cancelled
Unit tests / build (push) Successful in 4m12s
maybe this is why it isn't working?
This commit is contained in:
7
.github/workflows/ficus.yml
vendored
7
.github/workflows/ficus.yml
vendored
@@ -12,8 +12,6 @@ env:
|
|||||||
jobs:
|
jobs:
|
||||||
build-ficus-toolchain:
|
build-ficus-toolchain:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
env:
|
|
||||||
CCACHE_DIR: ~/ccache-cache
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repo
|
- name: Checkout repo
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
@@ -25,14 +23,11 @@ jobs:
|
|||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: sudo apt-get update && sudo apt-get install -y cmake build-essential pax gcc g++ nasm bison bzip2 flex mtools texinfo libgmp-dev libmpfr-dev libmpc-dev xorriso ccache
|
run: sudo apt-get update && sudo apt-get install -y cmake build-essential pax gcc g++ nasm bison bzip2 flex mtools texinfo libgmp-dev libmpfr-dev libmpc-dev xorriso ccache
|
||||||
|
|
||||||
- name: Create ccache dir
|
|
||||||
run: mkdir ~/ccache-cache
|
|
||||||
|
|
||||||
- name: CCache cache
|
- name: CCache cache
|
||||||
id: cache-ccache
|
id: cache-ccache
|
||||||
uses: actions/cache@v4
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: ~/ccache-cache
|
path: ~/.cache/ccache
|
||||||
key: ${{ runner.os }}-ccache
|
key: ${{ runner.os }}-ccache
|
||||||
|
|
||||||
- name: Add ccache to path
|
- name: Add ccache to path
|
||||||
|
|||||||
Reference in New Issue
Block a user