Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Google Mock differences between Ubuntu 18.04 and 16.04 (apache#9141)
I thought I got all of these, but turns out I didn't, there's another weirdism in how Google Mock and Google Test are packaged on Ubuntu where the `cmake` command fails due to directories outside of the build root. Double checked logs on Ubuntu 18.04 and Ubuntu 16.04 for this after enabling verbose copying: ```shell $ ./docker/build.sh ci_cpu --net=host ... 'googlemock/libgmock.a' -> '/usr/lib/libgmock.a' 'googlemock/libgmock_main.a' -> '/usr/lib/libgmock_main.a' 'googlemock/gtest/libgtest.a' -> '/usr/lib/libgtest.a' 'googlemock/gtest/libgtest_main.a' -> '/usr/lib/libgtest_main.a' $ ./docker/build.sh ci_i386 --net=host ... 'libgtest.a' -> '/usr/lib/libgtest.a' 'libgtest_main.a' -> '/usr/lib/libgtest_main.a' ... 'libgmock.a' -> '/usr/lib/libgmock.a' 'libgmock_main.a' -> '/usr/lib/libgmock_main.a' ```
- Loading branch information