mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-24 13:21:19 +00:00
8a05c8f8be
* feat(docker/docs): explain how building lemmy works Signed-off-by: Enzo NOCERA <enzo@nocera.eu> * feat: add arm build * review: rename script & fix typo * feat(ci): allow cross platform compilation * feat(ci): prettier * fix(docker): fix base image name * fix: add dockerfile in CI path Signed-off-by: Enzo Nocera <enzo@nocera.eu> * fix(docker): fix runner name * fix(docker): fix builder base image * fix(docker): fix builder base image platform * fix(docker): avoid using the wrapper adduser/addgroup * feat: avoid adding the whole docker directory in the build context --------- Signed-off-by: Enzo NOCERA <enzo@nocera.eu> Signed-off-by: Enzo Nocera <enzo@nocera.eu> Co-authored-by: Dessalines <dessalines@users.noreply.github.com> Co-authored-by: Nutomic <me@nutomic.com>
20 lines
817 B
Bash
20 lines
817 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -e;
|
|
|
|
source "$HOME/.cargo/env"
|
|
|
|
case "$RUST_RELEASE_MODE" in
|
|
"debug")
|
|
echo "pub const VERSION: &str = \"$(git describe --tag)\";" > "crates/utils/src/version.rs"
|
|
cargo build --features "${CARGO_BUILD_FEATURES}"
|
|
cp "./target/$CARGO_BUILD_TARGET/$RUST_RELEASE_MODE/lemmy_server" /home/lemmy/lemmy_server
|
|
;;
|
|
"release")
|
|
# Pass a value to $USE_RELEASE_CACHE to avoid purging the cache for release builds
|
|
[[ -z "$USE_RELEASE_CACHE" ]] || cargo clean --release
|
|
echo "pub const VERSION: &str = \"$(git describe --tag)\";" > "crates/utils/src/version.rs"
|
|
cargo build --features "${CARGO_BUILD_FEATURES}" --release
|
|
cp "./target/$CARGO_BUILD_TARGET/$RUST_RELEASE_MODE/lemmy_server" /home/lemmy/lemmy_server
|
|
;;
|
|
esac
|