Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/toolchain-asan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ on:
# actually reports is not, and an unproven entry here would ship a
# green run that means nothing.
- ingenic-t31
- hisilicon-hi3516ev200

env:
TAG_NAME: toolchain-asan
Expand Down Expand Up @@ -53,6 +54,10 @@ jobs:
# named for the family, not for this board.
case "${{inputs.family}}" in
ingenic-t31) BOARD=t31_lite ;;
# An ev300 defconfig for the ev200 family is not a typo: V4 boards
# share one toolchain, `make toolname` names it after the family, and
# the guard below is what would catch it if that ever stopped holding.
hisilicon-hi3516ev200) BOARD=hi3516ev300_lite ;;
*) echo "::error::no defconfig mapped for ${{inputs.family}}"; exit 1 ;;
esac
NAME=$(make BOARD="${BOARD}" toolname)
Expand Down
Loading