Skip to content
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 build-all.bat
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if DEFINED GIT_PULL_TOKEN (

set GTEST_PATH=third_party\googletest
if NOT EXIST %GTEST_PATH%\CMakeLists.txt (
git clone --depth 1 --branch release-1.11.0 https://github.com/google/googletest %GTEST_PATH%
git clone --depth 1 --branch release-1.12.1 https://github.com/google/googletest %GTEST_PATH%
)

set CUSTOM_PROPS=
Expand Down
2 changes: 1 addition & 1 deletion build-gtest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ GTEST_PATH=third_party/googletest
if [ ! "$(ls -A $GTEST_PATH/CMakeLists.txt)" ]; then
echo Clone googletest from google/googletest:master ...
rm -rf ${GTEST_PATH} #delete just if empty directory exists
git clone --depth 1 --branch release-1.11.0 https://github.com/google/googletest $GTEST_PATH
git clone --depth 1 --branch release-1.12.1 https://github.com/google/googletest $GTEST_PATH
else
echo "Using existing googletest from thirdparty/"
fi
Expand Down
2 changes: 1 addition & 1 deletion build-tests.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if DEFINED GIT_PULL_TOKEN (

set GTEST_PATH=third_party\googletest
if NOT EXIST %GTEST_PATH%\CMakeLists.txt (
git clone --depth 1 --branch release-1.11.0 https://github.com/google/googletest %GTEST_PATH%
git clone --depth 1 --branch release-1.12.1 https://github.com/google/googletest %GTEST_PATH%
)

set PLATFORM=
Expand Down
12 changes: 12 additions & 0 deletions docker/rockylinux9/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM mipsdkcontainer.azurecr.io/rockylinux9

## Common packages for linux build environment
RUN yum install -y yum-utils && \
yum-config-manager --enable crb && \
yum update -y && \
yum -y group install "Development Tools" && \
yum install -y libcurl-devel zlib-devel clang python pkg-config git bzip2 unzip make wget sudo cmake && \
yum -y install epel-release && \
yum install -y zlib-static gmock gmock-devel gtest gtest-devel

CMD /bin/bash
2 changes: 1 addition & 1 deletion lib/android_build/gradlew.bat
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ set APP_HOME=%DIRNAME%
set GTEST_PATH=..\..\third_party\googletest
if NOT EXIST %GTEST_PATH%\CMakeLists.txt (
rd /S /Q %GTEST_PATH%
git clone --depth 1 --branch release-1.11.0 https://github.com/google/googletest %GTEST_PATH%
git clone --depth 1 --branch release-1.12.1 https://github.com/google/googletest %GTEST_PATH%
dir %GTEST_PATH%\googletest\src\gtest-all.cc
)

Expand Down