Fix for x86_64 build fail
[platform/upstream/connectedhomeip.git] / src / test_driver / linux-cirque / OnOffClusterTest.sh
1 #!/usr/bin/env bash
2
3 #
4 # Copyright (c) 2020 Project CHIP Authors
5 #
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #     http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 #
18
19 set -e
20
21 SOURCE="${BASH_SOURCE[0]}"
22 SOURCE_DIR="$(cd -P "$(dirname "$SOURCE")" >/dev/null 2>&1 && pwd)"
23 REPO_DIR="$SOURCE_DIR/../../../"
24
25 chip_tool_dir=$REPO_DIR/examples/chip-tool
26 chip_light_dir=$REPO_DIR/examples/lighting-app/linux
27
28 function build_chip_tool() {
29     # These files should be successfully compiled elsewhere.
30     source "$REPO_DIR/scripts/activate.sh" >/dev/null
31     set -x
32     cd "$chip_tool_dir"
33     gn gen --check --fail-on-unused-args out/debug >/dev/null
34     run_ninja -C out/debug
35     docker build -t chip_tool -f Dockerfile . 2>&1
36 }
37
38 function build_chip_lighting() {
39     source "$REPO_DIR/scripts/activate.sh" >/dev/null
40     set -x
41     cd "$chip_light_dir"
42     gn gen --check --fail-on-unused-args out/debug
43     run_ninja -C out/debug
44     docker build -t chip_server -f Dockerfile . 2>&1
45     set +x
46 }
47
48 function main() {
49     pushd .
50     build_chip_tool
51     build_chip_lighting
52     popd
53     python3 "$SOURCE_DIR/test-on-off-cluster.py"
54 }
55
56 source "$SOURCE_DIR"/shell-helpers.sh
57 main