1
Fork 0

shellcheck

main
Motiejus Jakštys 2021-08-24 16:42:48 +03:00
parent 5d4d6410da
commit 63d171007e
2 changed files with 8 additions and 6 deletions

View File

@ -3,6 +3,7 @@ packages:
- go - go
- git - git
- make - make
- shellcheck
sources: sources:
- https://git.sr.ht/~motiejus/undocker - https://git.sr.ht/~motiejus/undocker
tasks: tasks:
@ -12,6 +13,7 @@ tasks:
make -C undocker coverage.html make -C undocker coverage.html
- lint: | - lint: |
make -C undocker -O -j$(nproc) lint make -C undocker -O -j$(nproc) lint
shellcheck undocker/release
- binaries: | - binaries: |
make -C undocker -O -j$(nproc) sha256sum.txt make -C undocker -O -j$(nproc) sha256sum.txt
cat undocker/sha256sum.txt cat undocker/sha256sum.txt

12
release
View File

@ -6,24 +6,24 @@ err() {
exit 1 exit 1
} }
[[ -n "$(git status --porcelain)" ]] && \ git status --porcelain | grep -q "" &&
err "working tree is dirty, commit your changes first." err "working tree is dirty, commit your changes first."
[[ ! "$1" =~ ^v([0-9]+)\.([0-9]+)(\.([0-9]+))?$ ]] && \ [[ ! "$1" =~ ^v([0-9]+)\.([0-9]+)(\.([0-9]+))?$ ]] && \
err "arg1 accepts the following formats: v1.0 v1.0.0" err "arg1 accepts the following formats: v1.0 v1.0.0"
[[ -n "$(git tag | grep "^$1$")" ]] && \ git tag | grep -q "^$1$" &&
err "tag $1 already exists" err "tag $1 already exists"
last_tag=$(git tag | tail -1) last_tag=$(git tag | tail -1)
make -B -j$(nproc) VSN=$1 sha256sum.txt.asc make -B -j"$(nproc)" VSN="$1" sha256sum.txt.asc
{ {
echo undocker $1 echo undocker "$1"
echo echo
echo Changelog since $last_tag: echo Changelog since "$last_tag":
git log --pretty=format:"- [%cn] %s" $last_tag..HEAD git log --pretty=format:"- [%cn] %s" "$last_tag"..HEAD
echo echo
echo echo
echo sha256sums of released binaries: echo sha256sums of released binaries: