3 Commits

Author SHA1 Message Date
c4a44da699 CI: fix hashing build stuff for newlib
Some checks failed
Ficus build / iso (push) Blocked by required conditions
Ficus build / build-ficus-toolchain (push) Has been cancelled
Unit tests / build (push) Has been cancelled
2024-07-15 18:32:57 +02:00
e0fd22a667 misc: remove extra newline in VMA.hpp
also test CI
2024-07-15 18:26:28 +02:00
d0105fffe2 CI: fix s2 cache? 2024-07-15 17:40:10 +02:00
2 changed files with 2 additions and 3 deletions

View File

@@ -95,7 +95,7 @@ jobs:
with:
path: |
toolchain/gcc-x86_64-ficus-prefix
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('ficus-toolchain/*.sh') }}-${{ hashFiles('ficus-toolchain/newlib/**/*') }}
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('ficus-toolchain/*.sh') }}-${{ hashFiles('ficus-toolchain/newlib/newlib-4.4.0.20231231/**') }}
- if: ${{ steps.cache-toolchain-s2.outputs.cache-hit != 'true' }}
name: Build ficus toolchain s2
@@ -109,7 +109,7 @@ jobs:
with:
path: |
toolchain/gcc-x86_64-ficus-prefix
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('ficus-toolchain/*.sh') }}-${{ hashFiles('ficus-toolchain/newlib/**/*') }}
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('ficus-toolchain/*.sh') }}-${{ hashFiles('ficus-toolchain/newlib/newlib-4.4.0.20231231/**') }}
- name: Tar the toolchain
run: cd ${{github.workspace}} && tar -czvf toolchain-ficus.tar.xz toolchain sysroot

View File

@@ -24,7 +24,6 @@ public:
VMA &operator=(const VMA &) = delete;
VMA &operator=(VMA &&) = delete;
/// Map all higher-half pages into the address space
/// By linking them to same entries as kernel
void map_kern();