Skip to content

Commit

Permalink
CI: Fix cd screwup that made almost-no-tests run
Browse files Browse the repository at this point in the history
  • Loading branch information
chrysn committed Dec 2, 2023
1 parent 34fc0c5 commit 633d87c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
- name: Build and run tests
run: |
set -x
cd RIOT
export RIOTBASE=$(pwd)/RIOT
# Removing tests/pkg/lvgl due to https://github.com/RIOT-OS/RIOT/issues/20110
#
# Skipping examples because ... not sure, did it that way before
Expand All @@ -108,8 +108,7 @@ jobs:
# Skipping peripheral and driver tests because we don't implement those
# with wrappers; the valuable ones are those like saul where there are
# modules that use Rust.
DIRS=$(make -f makefiles/app_dirs.inc.mk info-applications | grep -v tests/pkg/lvgl |grep -v examples |grep -v periph |grep -v driver)
export RIOTBASE=$(pwd)/RIOT
DIRS=$(make --quiet -C ${RIOTBASE} -f makefiles/app_dirs.inc.mk info-applications | grep -v tests/pkg/lvgl |grep -v examples |grep -v periph |grep -v driver)
for D in ${DIRS}; do
echo "::group::Building ${D}"
cd ${D}
Expand Down

0 comments on commit 633d87c

Please sign in to comment.