aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
diff options
context:
space:
mode:
authorKangping <wgtdkp@google.com>2021-12-16 07:57:39 +0800
committerGitHub <noreply@github.com>2021-12-15 15:57:39 -0800
commit72fa16e595af28d2f2a3fbd19c3da9f5c3d397de (patch)
tree6a8308da53e457234c4dc64b7fd0ee58c39b00bb /.github/workflows/build.yml
parent151874d538db0ac3a7e726d390b711cac1869138 (diff)
downloadot-br-posix-72fa16e595af28d2f2a3fbd19c3da9f5c3d397de.tar.gz
[border-agent] make border agent feature configurable (#1150)
The Thread Border Agent feature is for advertising the MeshCoP mDNS service (i.e. `_meshcop._udp`). There may be cases this function is not supported, so making it optional.
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r--.github/workflows/build.yml9
1 files changed, 2 insertions, 7 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index be616303..47ee2c77 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -57,18 +57,13 @@ jobs:
android-check:
runs-on: ubuntu-20.04
- strategy:
- matrix:
- mdns: ["mDNSResponder", ""]
steps:
- uses: actions/checkout@v2
with:
submodules: true
- - name: Check
- env:
- OTBR_MDNS: ${{ matrix.mdns }}
+ - name: Check (Border Agent with mDNSResponder)
run: >
- docker run --rm --env OTBR_MDNS=$OTBR_MDNS -v $PWD:/build/ot-br-posix -v $PWD/third_party/openthread/repo:/build/external/openthread openthread/android-trusty bash -c
+ docker run --rm --env OTBR_MDNS=mDNSResponder -v $PWD:/build/ot-br-posix -v $PWD/third_party/openthread/repo:/build/external/openthread openthread/android-trusty bash -c
"BUILD_TARGET=android-check ot-br-posix/tests/scripts/bootstrap.sh && \
ot-br-posix/tests/scripts/check-android-build"