Skip to content

Commit d9255fa

Browse files
authored
CI: Use v0.1.3 (latest) cxx-common prebuilt libraries (#511)
1 parent 4eaf6e2 commit d9255fa

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

scripts/build.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ LLVM_VERSION=llvm-11
2727
OS_VERSION=
2828
ARCH_VERSION=
2929
BUILD_FLAGS=
30-
CXX_COMMON_VERSION="v0.1.1"
30+
CXX_COMMON_VERSION="v0.1.3"
3131

3232
# There are pre-build versions of various libraries for specific
3333
# Ubuntu releases.
@@ -175,15 +175,15 @@ function DownloadLibraries
175175
#BUILD_FLAGS="${BUILD_FLAGS} -DCMAKE_OSX_SYSROOT=${sdk_root}"
176176
# Min version supported
177177
OS_VERSION="macos-10.15"
178-
XCODE_VERSION="12.1.0"
178+
# Hard-coded to match pre-built binaries in CI
179+
XCODE_VERSION="12.4"
179180
if [[ "$(sw_vers -productVersion)" == "10.15"* ]]; then
180181
echo "Found MacOS Catalina"
181182
OS_VERSION="macos-10.15"
182-
XCODE_VERSION="12.1.0"
183-
elif [[ "$(sw_vers -productVersion)" == "11.0"* ]]; then
183+
elif [[ "$(sw_vers -productVersion)" == "11."* ]]; then
184184
echo "Found MacOS Big Sur"
185-
OS_VERSION="macos-11.0"
186-
XCODE_VERSION="12.2.0"
185+
# Uses 10.15 binaries
186+
OS_VERSION="macos-10.15"
187187
else
188188
echo "WARNING: ****Likely unsupported MacOS Version****"
189189
echo "WARNING: ****Using ${OS_VERSION}****"

0 commit comments

Comments
 (0)