]> git.r.bdr.sh - rbdr/blog/commitdiff
Set the release
authorRuben Beltran del Rio <redacted>
Wed, 13 Mar 2024 08:22:07 +0000 (09:22 +0100)
committerRuben Beltran del Rio <redacted>
Wed, 13 Mar 2024 08:22:07 +0000 (09:22 +0100)
.build.yml
Makefile

index b14872386400ebd3109733f79171922db0dd9685..725c31b1cf5a7173c9fc19422b3c374f3a22c619 100644 (file)
@@ -2,6 +2,7 @@ image: archlinux
 packages:
   - make
   - rsync
 packages:
   - make
   - rsync
+  - coreutils
   - clang
   - lld
   - rustup
   - clang
   - lld
   - rustup
index c213f1aca6db8a6e87e575c7af958dd1fc614af4..5522ece3077f95e8b4e0a26f814ec40fa0bdb380 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -25,13 +25,15 @@ else
 endif
 
 rpm: build
 endif
 
 rpm: build
-       cargo generate-rpm --profile $(profile) --target $(target)
+       cargo generate-rpm --profile $(profile) --target $(target) -s'release = "$(channel)"'
        rsync -avz target/$(target)/generate-rpm/*.rpm deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name)
 
 tar: build
        @$(eval filename := $(app_name)-$(target)-$(channel))
        tar -czvf $(filename).tar.gz -C target/$(target)/$(profile)/ $(app_name)
        rsync -avz target/$(target)/generate-rpm/*.rpm deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name)
 
 tar: build
        @$(eval filename := $(app_name)-$(target)-$(channel))
        tar -czvf $(filename).tar.gz -C target/$(target)/$(profile)/ $(app_name)
+       sha256sum $(filename).tar.gz > $(filename).sha256
        rsync -avz $(filename).tar.gz deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name)
        rsync -avz $(filename).tar.gz deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name)
+       rsync -avz $(filename).sha256 deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name)
 
 package: $(architectures)
 
 
 package: $(architectures)