We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de7a0e2 commit 0a3f3c9Copy full SHA for 0a3f3c9
1 file changed
.github/workflows/multi-arch-test-build.yml
@@ -85,7 +85,12 @@ jobs:
85
86
# fallback to test packages if nothing explicitly changes this is
87
# should run if other mechanics in packages.git changed
88
- PACKAGES="${PACKAGES:-vim attendedsysupgrade-common bmon}"
+ REPOSITORY_NAME=${GITHUB_REPOSITORY#*/}
89
+ if [ "$REPOSITORY_NAME" = "routing" ]; then
90
+ PACKAGES="${PACKAGES:-bird2 cjdns olsrd}"
91
+ else
92
+ PACKAGES="${PACKAGES:-vim attendedsysupgrade-common bmon}"
93
+ fi
94
95
echo "Building $PACKAGES"
96
echo "PACKAGES=$PACKAGES" >> $GITHUB_ENV
0 commit comments