mirror of
https://gitlab.com/preserves/preserves-rs.git
synced 2024-11-08 19:56:55 +00:00
ci-release makefile target
This commit is contained in:
parent
617f58b527
commit
3809e92a16
1 changed files with 8 additions and 0 deletions
8
Makefile
8
Makefile
|
@ -41,3 +41,11 @@ ws-bump:
|
|||
ws-publish:
|
||||
cargo workspaces publish \
|
||||
--from-git
|
||||
|
||||
ci-release: x86_64-binary-release aarch64-binary-release armv7-binary-release
|
||||
rm -rf target/dist
|
||||
for arch in x86_64 aarch64 armv7; do \
|
||||
mkdir -p target/dist/$$arch; \
|
||||
cp -a target/target.$$arch/$$arch-unknown-linux-musl*/release/preserves-schema-rs target/dist/$$arch; \
|
||||
cp -a target/target.$$arch/$$arch-unknown-linux-musl*/release/preserves-tool target/dist/$$arch; \
|
||||
done
|
||||
|
|
Loading…
Reference in a new issue