Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
gjc13 committed Jul 6, 2020
1 parent c84335a commit efaebe1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ jobs:
case $BUILD_TYPE in
"main") export BOOTSTRAP_ARGUMENTS="";;
"clang") export BOOTSTRAP_ARGUMENTS="CC=clang-9 CXX=clang++-9";;
"linux-embedded") export BOOTSTRAP_ARGUMENTS="--with-device-layer=linux";;
"linux-embedded")
apt-get update
apt-get install-y libdbus-1-dev
export BOOTSTRAP_ARGUMENTS="--with-device-layer=linux";;
"mbedtls") export BOOTSTRAP_ARGUMENTS="--with-crypto=mbedtls";;
*) ;;
esac
Expand Down
8 changes: 4 additions & 4 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@
ignore = dirty
commit = 5f0e36eeb236a507631e9c822e43f742b7b6738a
[submodule "third_party/ot-br-posix/repo"]
path = third_party/ot-br-posix/repo
url = https://github.com/openthread/ot-br-posix.git
path = third_party/ot-br-posix/repo
url = https://github.com/openthread/ot-br-posix.git
branch = master
ignore = dirty
commit = 38e91052d1fb12a55c4e34073f9e399471650b4b
ignore = dirty
commit = 38e91052d1fb12a55c4e34073f9e399471650b4b
1 change: 1 addition & 0 deletions integrations/docker/images/chip-build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ RUN set -x \
libglib2.0-dev \
libpixman-1-dev \
ninja-build \
libdbus-1-dev \
&& rm -rf /var/lib/apt/lists/ \
&& : # last line

Expand Down

0 comments on commit efaebe1

Please sign in to comment.