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

test-on-iotlab: several fixes to make it runnable again [backport 2022.10] #18757

Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/test-on-iotlab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install iotlabcli pexpect riotctrl[rapidjson] junit-xml
pip install iotlabcli pexpect riotctrl[rapidjson] junit-xml scapy
- name: Configure credentials
run: echo '${{ secrets.IOTLABRC }}' > ~/.iotlabrc
- name: Setup SSH agent
Expand Down
5 changes: 2 additions & 3 deletions tests/gnrc_rpl/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,15 @@ USEMODULE += gnrc_rpl
USEMODULE += shell
USEMODULE += shell_cmds_default

# automated test only works on native
TEST_ON_CI_WHITELIST += native

ifeq (native, $(BOARD))
USEMODULE += socket_zep
USEMODULE += socket_zep_hello
USEMODULE += netdev
TERMFLAGS += -z 127.0.0.1:17754 # Murdock has no IPv6 support
else
USEMODULE += netdev_default
# automated test only works on native
TESTS=
endif

.PHONY: host-tools
Expand Down