mirror of
https://github.com/trezor/trezor-firmware.git
synced 2026-02-20 00:33:30 +01:00
ci: fix changelog check for github
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -u
|
||||
|
||||
base_branch=main
|
||||
fail=0
|
||||
subdirs="core core/embed/boardloader core/embed/bootloader core/embed/bootloader_ci legacy/bootloader legacy/firmware legacy/intermediate_fw python"
|
||||
@@ -51,8 +53,12 @@ check_release_branch () {
|
||||
fi
|
||||
}
|
||||
|
||||
# gitlab
|
||||
if echo "$CI_COMMIT_BRANCH" | grep -Eq "^(release|secfix)/"; then
|
||||
check_release_branch
|
||||
# github, TODO this only makes sense running on branches but not pull requests
|
||||
elif $(git branch --show-current) | grep -Eq "^(release|secfix)/"; then
|
||||
check_release_branch
|
||||
else
|
||||
check_feature_branch
|
||||
fi
|
||||
|
||||
@@ -139,6 +139,7 @@ stdenvNoCC.mkDerivation ({
|
||||
ffmpeg
|
||||
dejavu_fonts
|
||||
] ++ lib.optionals devTools [
|
||||
shellcheck
|
||||
gdb
|
||||
openocd-stm
|
||||
] ++ lib.optionals (devTools && acceptJlink) [
|
||||
|
||||
Reference in New Issue
Block a user