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

CI: Run on main and on request in addition to pull requests #68

Merged
merged 19 commits into from
Dec 2, 2023
Merged
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
Prev Previous commit
Next Next commit
CI: Fix how list of tests is obtained
Some Makefile are for tools inside tests
chrysn committed Dec 2, 2023
commit c7e352fd056e8d10794171d9f9b6b118f1955c40
2 changes: 1 addition & 1 deletion .github/workflows/buildtest.yml
Original file line number Diff line number Diff line change
@@ -99,7 +99,7 @@ jobs:
run: |
set -x
# Removing tests/pkg/lvgl due to https://github.com/RIOT-OS/RIOT/issues/20110
DIRS=$(find RIOT/tests -name Makefile | grep -v tests/pkg/lvgl | xargs -n1 dirname)
DIRS=$(make -f makefiles/app_dirs.inc.mk info-applications | grep -v tests/pkg/lvgl)
export RIOTBASE=$(pwd)/RIOT
for D in ${DIRS}; do
echo "::group::Building ${D}"