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

maybe this is why it isn't working?
This commit is contained in:
2024-07-15 20:21:15 +02:00
parent 1f2f4ba774
commit 7b84cfaeea

View File

@@ -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