-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: John Coyle <[email protected]>
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Alpine Build (Experimental) | ||
|
||
## Dev Env Setup | ||
|
||
``` | ||
apk --update add bash sudo git | ||
git clone https://github.com/ceph/ceph | ||
``` | ||
|
||
### Build | ||
|
||
``` | ||
./run-make-check.sh -DWITH_EMBEDDED=OFF -DWITH_SYSTEM_BOOST=ON -DWITH_LTTNG=OFF -DWITH_REENTRANT_STRSIGNAL=ON -DWITH_THREAD_SAFE_RES_QUERY=ON | ||
``` | ||
|
||
### Packaging | ||
|
||
``` | ||
./make-apk.sh | ||
``` | ||
|
||
### Docker | ||
|
||
``` | ||
cd ceph/src | ||
./test/docker-test.sh --os-type alpine --os-version edge ./make-apk.sh | ||
or | ||
./test/docker-test.sh --os-type alpine --os-version edge -- ./run-make-check.sh -DWITH_EMBEDDED=OFF -DWITH_SYSTEM_BOOST=ON -DWITH_LTTNG=OFF -DWITH_REENTRANT_STRSIGNAL=ON -DWITH_THREAD_SAFE_RES_QUERY=ON | ||
``` | ||
|
||
## Known Issues | ||
|
||
- Uses musl libc malloc because musl does not currently support replacing malloc implementation. see https://bugs.alpinelinux.org/issues/5389 | ||
- No backtrace support need to look at libunwind integration |