This commit is contained in:
Your Name 2025-04-29 20:56:07 +12:00
parent 11e50eae8c
commit ac314e9f67

View File

@ -28,7 +28,8 @@ docker run --rm -v "$(pwd)/..:/src" -u root dropshell-builder:latest bash -c '
cmake -DCMAKE_BUILD_TYPE=Release .. && \ cmake -DCMAKE_BUILD_TYPE=Release .. && \
make && \ make && \
cp dropshell ../packages/output/dropshell-x86_64 && \ cp dropshell ../packages/output/dropshell-x86_64 && \
chown '"$USER_ID:$GROUP_ID"' ../packages/output/dropshell-x86_64 chown '"$USER_ID:$GROUP_ID"' ../packages/output/dropshell-x86_64 && \
rm -rf build
' '
# Build arm64 executable # Build arm64 executable
@ -40,5 +41,6 @@ docker run --rm -v "$(pwd)/..:/src" -u root dropshell-builder:latest bash -c '
-DCMAKE_BUILD_TYPE=Release .. && \ -DCMAKE_BUILD_TYPE=Release .. && \
make && \ make && \
cp dropshell ../packages/output/dropshell-arm64 && \ cp dropshell ../packages/output/dropshell-arm64 && \
chown '"$USER_ID:$GROUP_ID"' ../packages/output/dropshell-arm64 chown '"$USER_ID:$GROUP_ID"' ../packages/output/dropshell-arm64 && \
rm -rf build
' '