Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch container build to release, add missing dependency #46

Merged
merged 1 commit into from
Sep 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ COPY subprojects /app/subprojects
COPY test /app/test
IsaacKhor marked this conversation as resolved.
Show resolved Hide resolved

RUN make install-deps \
&& make debug
&& make release
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ debug:
meson setup --native-file meson.ini build-dbg --buildtype=debug
cd build-dbg; meson compile

release:
meson setup --native-file meson.ini build-rel --buildtype=release -Db_sanitize=none
cd build-rel; meson compile

paper:
@$(MAKE) -C atc2024

Expand All @@ -28,4 +32,4 @@ install-deps:
python3-pyelftools libcunit1-dev libaio-dev nasm librados-dev librbd-dev
# LSVD deps
sudo apt install -y meson mold libfmt-dev librados-dev \
libjemalloc-dev libradospp-dev pkg-config uuid-dev
libjemalloc-dev libradospp-dev pkg-config uuid-dev ceph-common
Loading