From 85de837187166502fc9be372c8b6f11b8b8ca776 Mon Sep 17 00:00:00 2001 From: Jonathan Hui Date: Wed, 22 Jul 2020 14:09:03 -0700 Subject: [PATCH] [github-actions] fix external-commissioner test (#5279) - Install avahi-daemon and avahi-utils packages. - Remove ot-br-posix dependencies. --- .github/workflows/simulation.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/simulation.yml b/.github/workflows/simulation.yml index f18316025..d29dfe958 100644 --- a/.github/workflows/simulation.yml +++ b/.github/workflows/simulation.yml @@ -210,7 +210,7 @@ jobs: - name: Bootstrap run: | sudo rm /etc/apt/sources.list.d/* - sudo apt-get --no-install-recommends install -y ninja-build + sudo apt-get install avahi-daemon avahi-utils -y git clone https://github.com/openthread/ot-commissioner.git /tmp/ot-commissioner --depth 1 --branch master - name: Build run: | @@ -230,9 +230,6 @@ jobs: cd /tmp/ot-commissioner/tests/integration ./bootstrap.sh ./run_tests.sh - - name: Copy Codecov Files - run: | - cp -vr /tmp/test-ot-commissioner/ot-br-posix/build/* build/ - name: Codecov uses: codecov/codecov-action@v1