Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
yangql
googletest
Commits
965f8ecb
Commit
965f8ecb
authored
Apr 09, 2021
by
Abseil Team
Committed by
Dino Radaković
Apr 09, 2021
Browse files
Googletest export
Generalize root directory in CI scripts PiperOrigin-RevId: 367628939
parent
ad462b70
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
8 deletions
+12
-8
ci/linux-presubmit.sh
ci/linux-presubmit.sh
+7
-5
ci/macos-presubmit.sh
ci/macos-presubmit.sh
+5
-3
No files found.
ci/linux-presubmit.sh
View file @
965f8ecb
...
...
@@ -34,7 +34,9 @@ set -euox pipefail
readonly
LINUX_LATEST_CONTAINER
=
"gcr.io/google.com/absl-177019/linux_hybrid-latest:20201008"
readonly
LINUX_GCC_FLOOR_CONTAINER
=
"gcr.io/google.com/absl-177019/linux_gcc-floor:20201015"
SRC
=
$(
realpath
git/googletest
)
if
[[
-z
${
GTEST_ROOT
:-}
]]
;
then
GTEST_ROOT
=
"
$(
realpath
$(
dirname
${
0
}
)
/..
)
"
fi
if
[[
-z
${
STD
:-}
]]
;
then
STD
=
"c++11 c++14 c++17 c++20"
...
...
@@ -44,7 +46,7 @@ fi
for
cc
in
/usr/local/bin/gcc /opt/llvm/clang/bin/clang
;
do
for
cmake_off_on
in
OFF ON
;
do
time
docker run
\
--volume
=
"
${
SRC
}
:/src:ro"
\
--volume
=
"
${
GTEST_ROOT
}
:/src:ro"
\
--tmpfs
=
"/build:exec"
\
--workdir
=
"/build"
\
--rm
\
...
...
@@ -66,7 +68,7 @@ done
# Do one test with an older version of GCC
time
docker run
\
--volume
=
"
${
SRC
}
:/src:ro"
\
--volume
=
"
${
GTEST_ROOT
}
:/src:ro"
\
--workdir
=
"/src"
\
--rm
\
--env
=
"CC=/usr/local/bin/gcc"
\
...
...
@@ -83,7 +85,7 @@ time docker run \
for
std
in
${
STD
}
;
do
for
absl
in
0 1
;
do
time
docker run
\
--volume
=
"
${
SRC
}
:/src:ro"
\
--volume
=
"
${
GTEST_ROOT
}
:/src:ro"
\
--workdir
=
"/src"
\
--rm
\
--env
=
"CC=/usr/local/bin/gcc"
\
...
...
@@ -103,7 +105,7 @@ done
for
std
in
${
STD
}
;
do
for
absl
in
0 1
;
do
time
docker run
\
--volume
=
"
${
SRC
}
:/src:ro"
\
--volume
=
"
${
GTEST_ROOT
}
:/src:ro"
\
--workdir
=
"/src"
\
--rm
\
--env
=
"CC=/opt/llvm/clang/bin/clang"
\
...
...
ci/macos-presubmit.sh
View file @
965f8ecb
...
...
@@ -31,13 +31,15 @@
set
-euox
pipefail
SRC
=
$(
realpath
git/googletest
)
if
[[
-z
${
GTEST_ROOT
:-}
]]
;
then
GTEST_ROOT
=
"
$(
realpath
$(
dirname
${
0
}
)
/..
)
"
fi
# Test the CMake build
for
cmake_off_on
in
OFF ON
;
do
BUILD_DIR
=
$(
mktemp
-d
build_dir.XXXXXXXX
)
cd
${
BUILD_DIR
}
time
cmake
${
SRC
}
\
time
cmake
${
GTEST_ROOT
}
\
-DCMAKE_CXX_STANDARD
=
11
\
-Dgtest_build_samples
=
ON
\
-Dgtest_build_tests
=
ON
\
...
...
@@ -59,7 +61,7 @@ else
BAZEL_BIN
=
"bazel"
fi
cd
${
SRC
}
cd
${
GTEST_ROOT
}
for
absl
in
0 1
;
do
${
BAZEL_BIN
}
test
...
\
--copt
=
"-Wall"
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment