mirror of https://github.com/BOINC/boinc.git
Merge pull request #4425 from talregev/TalR_linux_ci_vcpkg_compile_release_only
[Linux] vcpkg in ci compile in release only
This commit is contained in:
commit
09f59b5c71
|
@ -0,0 +1,5 @@
|
||||||
|
set(VCPKG_BUILD_TYPE release)
|
||||||
|
set(VCPKG_TARGET_ARCHITECTURE x64)
|
||||||
|
set(VCPKG_CRT_LINKAGE dynamic)
|
||||||
|
set(VCPKG_LIBRARY_LINKAGE static)
|
||||||
|
set(VCPKG_CMAKE_SYSTEM_NAME Linux)
|
|
@ -8,6 +8,7 @@ fi
|
||||||
|
|
||||||
CACHE_DIR="$PWD/3rdParty/buildCache/linux"
|
CACHE_DIR="$PWD/3rdParty/buildCache/linux"
|
||||||
BUILD_DIR="$PWD/3rdParty/linux"
|
BUILD_DIR="$PWD/3rdParty/linux"
|
||||||
|
VCPKG_PORTS="$PWD/3rdParty/vcpkg_ports"
|
||||||
VCPKG_ROOT="$BUILD_DIR/vcpkg"
|
VCPKG_ROOT="$BUILD_DIR/vcpkg"
|
||||||
|
|
||||||
export XDG_CACHE_HOME=$CACHE_DIR/vcpkgcache
|
export XDG_CACHE_HOME=$CACHE_DIR/vcpkgcache
|
||||||
|
@ -19,5 +20,5 @@ fi
|
||||||
|
|
||||||
git -C $VCPKG_ROOT pull
|
git -C $VCPKG_ROOT pull
|
||||||
$VCPKG_ROOT/bootstrap-vcpkg.sh
|
$VCPKG_ROOT/bootstrap-vcpkg.sh
|
||||||
$VCPKG_ROOT/vcpkg install rappture curl[core,openssl] --clean-after-build
|
$VCPKG_ROOT/vcpkg install rappture curl[core,openssl] opencl --clean-after-build --overlay-triplets=$VCPKG_PORTS/triplets/ci
|
||||||
$VCPKG_ROOT/vcpkg upgrade --no-dry-run
|
$VCPKG_ROOT/vcpkg upgrade --no-dry-run
|
||||||
|
|
Loading…
Reference in New Issue