Skip to content

Commit a6980ef

Browse files
cosmo0920edsiper
authored andcommitted
appveyor: Use vcpkg to install the latest OpenSSL
Signed-off-by: Hiroshi Hatake <hiroshi@chronosphere.io>
1 parent 7256406 commit a6980ef

File tree

1 file changed

+43
-4
lines changed

1 file changed

+43
-4
lines changed

appveyor.yml

+43-4
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,55 @@ install:
3737
- ps: Expand-Archive winflexbison.zip -Destination /WinFlexBison
3838
- ps: Copy-Item -Path /WinFlexBison/win_bison.exe /WinFlexBison/bison.exe
3939
- ps: Copy-Item -Path /WinFlexBison/win_flex.exe /WinFlexBison/flex.exe
40+
- cd C:\Tools\vcpkg
41+
- git pull
42+
- .\bootstrap-vcpkg.bat
43+
- cd %APPVEYOR_BUILD_FOLDER%
4044

4145
before_build:
42-
- git clone --depth=1 https://github.com/calyptia/fluent-bit-ci.git ci
43-
- ps: Copy-Item -Path .\ci\scripts\run-unit-tests.ps1 .\ci\do-ut.ps1
46+
- if %PLATFORM%==Win32 call C:\tools\vcpkg\vcpkg install --recurse openssl --triplet x86-windows-static
47+
- if %PLATFORM%==x64 call C:\tools\vcpkg\vcpkg install --recurse openssl --triplet x64-windows-static
4448
- if %PLATFORM%==Win32 call "%vspath%\VC\Auxiliary\Build\vcvars32.bat"
4549
- if %PLATFORM%==x64 call "%vspatH%\VC\Auxiliary\Build\vcvars64.bat"
4650

4751
build_script:
48-
- powershell ".\ci\do-ut.ps1;exit $LASTEXITCODE"
49-
- cd build
52+
- ps: |
53+
cd $ENV:APPVEYOR_BUILD_FOLDER\build
54+
55+
if ( "x64" -eq $env:PLATFORM ) {
56+
$OPENSSL_DIR = "C:\tools\vcpkg\packages\openssl_x64-windows-static"
57+
}
58+
else {
59+
$OPENSSL_DIR = "C:\tools\vcpkg\packages\openssl_x86-windows-static"
60+
}
61+
# CACHE GENERATION
62+
cmake -G "NMake Makefiles" `
63+
-D FLB_TESTS_INTERNAL=On `
64+
-D OPENSSL_ROOT_DIR=$OPENSSL_DIR `
65+
-D FLB_WITHOUT_flb-rt-out_elasticsearch=On `
66+
-D FLB_WITHOUT_flb-rt-out_td=On `
67+
-D FLB_WITHOUT_flb-rt-out_forward=On `
68+
-D FLB_WITHOUT_flb-rt-in_disk=On `
69+
-D FLB_WITHOUT_flb-rt-in_proc=On `
70+
-D FLB_WITHOUT_flb-it-parser=On `
71+
-D FLB_WITHOUT_flb-it-unit_sizes=On `
72+
-D FLB_WITHOUT_flb-it-network=On `
73+
-D FLB_WITHOUT_flb-it-pack=On `
74+
-D FLB_WITHOUT_flb-it-signv4=On `
75+
-D FLB_WITHOUT_flb-it-aws_credentials=On `
76+
-D FLB_WITHOUT_flb-it-aws_credentials_ec2=On `
77+
-D FLB_WITHOUT_flb-it-aws_credentials_http=On `
78+
-D FLB_WITHOUT_flb-it-aws_credentials_profile=On `
79+
-D FLB_WITHOUT_flb-it-aws_credentials_sts=On `
80+
-D FLB_WITHOUT_flb-it-aws_util=On `
81+
-D FLB_WITHOUT_flb-it-input_chunk=On `
82+
../
83+
# COMPILE
84+
cmake --build .
85+
86+
# RUNNING TESTS
87+
ctest --build-run-dir $PWD --output-on-failure
88+
5089
- cpack
5190
- cmake -G "NMake Makefiles" ..\
5291
- cmake --build .

0 commit comments

Comments
 (0)