Skip to content

Commit

Permalink
Update CI.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Trass3r authored Jul 7, 2024
1 parent 6272390 commit 00f03fc
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,13 @@ jobs:
- uses: Trass3r/setup-cpp@master
- uses: hendrikmuhs/ccache-action@v1
with:
max-size: 5G
max-size: 1G
verbose: 2
- name: Cache special kernel build files
uses: actions/cache@v4
with:
path: '**/*.cmd'
key: build-files
- name: build
env:
CCACHE_BASEDIR: ${{ github.workspace }}
Expand Down Expand Up @@ -74,7 +79,8 @@ jobs:
# build kernel
ccache -z
time make V=12 CC="ccache clang" -j$(($(nproc) + 1)) # V=1 for tracing
time make CC="ccache clang" -j$(($(nproc) + 1)) bzImage # V=1 for tracing
time make CC="ccache clang" -j$(($(nproc) + 1))
sudo make modules_install
sudo depmod -a
Expand Down

0 comments on commit 00f03fc

Please sign in to comment.