resolved comments

This commit is contained in:
Nikita Bykov
2020-09-08 17:13:02 +03:00
parent dc8da2cb3a
commit d23e94cfe3
4 changed files with 9 additions and 7 deletions

View File

@@ -55,6 +55,7 @@ jobs:
-Platform ${{ matrix.platform }} `
-Architecture ${{ matrix.architecture }} `
-Toolset ${{ matrix.toolset }}
- name: Publish artifact
uses: actions/upload-artifact@v2
with:
@@ -154,6 +155,7 @@ jobs:
release_name: ${{ env.VERSION }}
body: |
Boost ${{ env.VERSION }}
- name: Upload release assets
uses: actions/github-script@v2
with:

View File

@@ -79,8 +79,8 @@ class BoostBuilder {
#>
Write-Host "Create WorkFolderLocation and ArtifactFolderLocation folders"
New-Item -Path $this.WorkFolderLocation -ItemType "directory"
New-Item -Path $this.ArtifactFolderLocation -ItemType "directory"
New-Item -Path $this.WorkFolderLocation -ItemType "Directory"
New-Item -Path $this.ArtifactFolderLocation -ItemType "Directory"
Write-Host "Download Boost $($this.Version) source code..."
$this.Download()

Submodule helpers updated: e76cf52ff1...9fd8fba93d

View File

@@ -21,7 +21,7 @@ Describe "Windows Tests" {
"/EHsc",
"/I", "${env:BOOST_ROOT}\include",
"main-headers.cpp",
"/link", "/LIBPATH:${env:BOOST_ROOT}\lib"
"/link", "/LIBPATH:${env:BOOST_ROOT}\lib",
"/OUT:main_static_lib_1.exe"
)
"cl -nologo $buildArguments" | Should -ReturnZeroExitCode
@@ -33,7 +33,7 @@ Describe "Windows Tests" {
"/EHsc", "/MD",
"/I", "${env:BOOST_ROOT}\include",
"main-headers.cpp",
"/link", "/LIBPATH:${env:BOOST_ROOT}\lib"
"/link", "/LIBPATH:${env:BOOST_ROOT}\lib",
"/OUT:main_dynamic_lib_1.exe"
)
"cl -nologo $buildArguments" | Should -ReturnZeroExitCode
@@ -45,7 +45,7 @@ Describe "Windows Tests" {
"/EHsc",
"/I", "${env:BOOST_ROOT}\include",
"main_log.cpp",
"/link", "/LIBPATH:${env:BOOST_ROOT}\lib"
"/link", "/LIBPATH:${env:BOOST_ROOT}\lib",
"/OUT:main_static_lib_2.exe"
)
"cl -nologo $buildArguments" | Should -ReturnZeroExitCode
@@ -57,7 +57,7 @@ Describe "Windows Tests" {
"/EHsc", "/MD",
"/I", "${env:BOOST_ROOT}\include",
"main_log.cpp",
"/link", "/LIBPATH:${env:BOOST_ROOT}\lib"
"/link", "/LIBPATH:${env:BOOST_ROOT}\lib",
"/OUT:main_dynamic_lib_2.exe"
)
"cl -nologo $buildArguments" | Should -ReturnZeroExitCode