Skip to content

Commit 9cd4cef

Browse files
committed
Cleanup
1 parent 9462ea2 commit 9cd4cef

File tree

3 files changed

+0
-15
lines changed

3 files changed

+0
-15
lines changed

ci/install-macos-vcpkg.sh

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,6 @@ if [[ "${VCPKG_VERSION:-}" == "" ]]; then
77
exit 1
88
fi
99

10-
# 2024-04-15, cmake 3.29.1 doesn't work so well with vcpkg, remove this line when cmake is 3.29.2+
11-
# https://github.com/microsoft/vcpkg/issues/37968
12-
brew list --versions
13-
brew -v update
14-
brew upgrade --force --display-times cmake
15-
brew list --versions
16-
1710
export VCPKG_ROOT="$HOME/build/vcpkg"
1811
if [[ -e "$VCPKG_ROOT" && ! -e "$VCPKG_ROOT/.git" ]]; then
1912
rm -rf "$VCPKG_ROOT"

ci/install-ubuntu-vcpkg.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,17 +36,13 @@ export VCPKG_DEFAULT_TRIPLET=x64-linux
3636
set +e
3737
which cmake
3838
cmake --version
39-
# 2024-04-15, cmake 3.29.1 doesn't work so well with vcpkg, remove this hack when cmake is 3.29.2+
40-
# https://github.com/microsoft/vcpkg/issues/37968
41-
mv -vf /usr/local/bin/cmake /usr/local/bin/cmake.bad
4239
if ! ./vcpkg install --clean-after-build --recurse "opencv[contrib,nonfree,ade]"; then
4340
for log in "$VCPKG_ROOT/buildtrees"/**/*out.log; do
4441
echo "=== $log"
4542
cat "$log"
4643
done
4744
exit 1
4845
fi
49-
mv -vf /usr/local/bin/cmake.bad /usr/local/bin/cmake
5046
)
5147
# remove build artifacts to save CI cache space
5248
rm -rf "$VCPKG_ROOT/downloads" "$VCPKG_ROOT/buildtrees" "$VCPKG_ROOT/packages"

ci/install-windows-vcpkg.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@ rm -rf "$VCPKG_INSTALLATION_ROOT"
88
# install llvm from choco in place of vcpkg to speed things up
99
choco install -y llvm --version "$CHOCO_LLVM_VERSION"
1010

11-
# 2024-04-15, cmake 3.29.1 doesn't work so well with vcpkg, remove this line when cmake is 3.29.2+
12-
# https://github.com/microsoft/vcpkg/issues/37968
13-
choco upgrade -y cmake --version 3.29.0
14-
1511
export VCPKG_ROOT="$HOME/build/vcpkg"
1612
if [[ -e "$VCPKG_ROOT" && ! -e "$VCPKG_ROOT/.git" ]]; then
1713
rm -rf "$VCPKG_ROOT"

0 commit comments

Comments
 (0)