-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: fix zmalloc_size on macos (#2646)
* fix: fix zmalloc_size on macos --------- Signed-off-by: Roman Gershman <[email protected]> Co-authored-by: Roman Gershman <[email protected]>
- Loading branch information
1 parent
3d27913
commit 47171c4
Showing
4 changed files
with
21 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,7 +80,7 @@ jobs: | |
df -h | ||
- name: Run sccache-cache | ||
uses: mozilla-actions/[email protected].3 | ||
uses: mozilla-actions/[email protected].4 | ||
|
||
- name: Configure Cache Env | ||
uses: actions/github-script@v6 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,10 +37,10 @@ jobs: | |
with: | ||
submodules: true | ||
- name: Run sccache-cache | ||
uses: mozilla-actions/[email protected].3 | ||
uses: mozilla-actions/[email protected].4 | ||
|
||
- name: Configure Cache Env | ||
uses: actions/github-script@v6 | ||
uses: actions/github-script@v7 | ||
with: | ||
script: | | ||
core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || ''); | ||
|
@@ -73,10 +73,20 @@ jobs: | |
- uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
- name: Run sccache-cache | ||
uses: mozilla-actions/[email protected] | ||
|
||
- name: Configure Cache Env | ||
uses: actions/github-script@v7 | ||
with: | ||
script: | | ||
core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || ''); | ||
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || '') | ||
- name: Install dependencies | ||
run: | | ||
brew update && brew install ninja boost openssl automake gcc zstd bison c-ares \ | ||
autoconf libtool automake | ||
autoconf libtool automake flatbuffers | ||
# brew info icu4c | ||
mkdir -p $GITHUB_WORKSPACE/build | ||
|
@@ -92,7 +102,8 @@ jobs: | |
echo "*************************** START BUILDING **************************************" | ||
CC=gcc-13 CXX=g++-13 cmake .. -DCMAKE_BUILD_TYPE=Debug -GNinja -DWITH_UNWIND=OFF | ||
CC=gcc-13 CXX=g++-13 cmake .. -DCMAKE_BUILD_TYPE=Debug -GNinja -DWITH_UNWIND=OFF \ | ||
-DCMAKE_C_COMPILER_LAUNCHER=sccache | ||
ninja src/all | ||
|
Submodule helio
updated
7 files
+9 −0 | base/logging.cc | |
+1 −2 | io/CMakeLists.txt | |
+16 −0 | io/file_test.cc | |
+5 −0 | io/io_test.cc | |
+21 −7 | io/proc_reader.cc | |
+1 −0 | io/proc_reader.h | |
+48 −0 | io/testdata/ids.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters