Skip to content

Commit 793c9cd

Browse files
committed
added library and pdb output as well
1 parent 84240d0 commit 793c9cd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.appveyor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ install:
4242
- .\vcpkg integrate install
4343
- .\vcpkg install zlib:%PLATFORM%-windows%POSTVCPKGNAME% openssl:%PLATFORM%-windows%POSTVCPKGNAME%
4444
- ps: if($env:POSTFIXNAME -eq 'MD') {
45-
.\vcpkg.exe export zlib:$($env:PLATFORM)-windows$($env:POSTVCPKGNAME) openssl:$($env:PLATFORM)-windows$($env:POSTVCPKGNAME) --raw;
45+
Invoke-Expression &".\vcpkg.exe export zlib:$($env:PLATFORM)-windows$($env:POSTVCPKGNAME) openssl:$($env:PLATFORM)-windows$($env:POSTVCPKGNAME) --raw";
4646
move vcpkg-export-* vcpkg-export;
47-
7z a vc140_$($env:configuration)_$($env:PLATFORM)_$($env:POSTFIXNAME)_libs.zip -i!vcpkg-export\installed\$($env:PLATFORM)-windows$($env:POSTVCPKGNAME)\*;
48-
Push-AppveyorArtifact vc140_$($env:configuration)_$($env:PLATFORM)_$($env:POSTFIXNAME)_libs.zip;
47+
Invoke-Expression &"7z a vc140_$($env:configuration)_$($env:PLATFORM)_$($env:POSTFIXNAME)_libs.zip -i!vcpkg-export\installed\$($env:PLATFORM)-windows$($env:POSTVCPKGNAME)\*";
48+
Push-AppveyorArtifact "vc140_$($env:configuration)_$($env:PLATFORM)_$($env:POSTFIXNAME)_libs.zip";
4949
}
5050
- cd ..
5151

0 commit comments

Comments
 (0)