resolved comments
This commit is contained in:
2
.github/workflows/build-boost-packages.yml
vendored
2
.github/workflows/build-boost-packages.yml
vendored
@@ -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:
|
||||
|
||||
@@ -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()
|
||||
|
||||
2
helpers
2
helpers
Submodule helpers updated: e76cf52ff1...9fd8fba93d
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user