Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add the ability to exclude keyboards from travis builds #11178

Merged
merged 8 commits into from
Dec 18, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
add the ability to exclude keyboards from travis builds
  • Loading branch information
skullydazed committed Dec 10, 2020
commit 8e492ef5e1f38c7d6ea2c7a6ba29dec41fe6402b
Empty file added keyboards/clueboard/17/.noci
Empty file.
Empty file.
Empty file added keyboards/clueboard/60/.noci
Empty file.
Empty file.
Empty file.
Empty file.
Empty file added keyboards/clueboard/card/.noci
Empty file.
5 changes: 5 additions & 0 deletions util/travis_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ for KB in $(make list-keyboards); do
continue
fi

if [[ -e keyboards/${KB}/.noci ]]; then
skullydazed marked this conversation as resolved.
Show resolved Hide resolved
# keyboard has been opted out of CI
continue
fi

KEYMAP_ONLY=$(echo "$KEYBOARD_CHANGES" | grep -cv /keymaps/)
if [[ $KEYMAP_ONLY -gt 0 ]]; then
echo "Making all keymaps for $KB"
Expand Down