diff --git a/.github/workflows/build-boost-packages.yml b/.github/workflows/build-boost-packages.yml index 38053d6..c82fb7c 100644 --- a/.github/workflows/build-boost-packages.yml +++ b/.github/workflows/build-boost-packages.yml @@ -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: diff --git a/builders/boost-builder.psm1 b/builders/boost-builder.psm1 index e6b5df5..0fa1248 100644 --- a/builders/boost-builder.psm1 +++ b/builders/boost-builder.psm1 @@ -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() diff --git a/helpers b/helpers index e76cf52..9fd8fba 160000 --- a/helpers +++ b/helpers @@ -1 +1 @@ -Subproject commit e76cf52ff11970c14589bdfc337487703c9199bf +Subproject commit 9fd8fba93dc1cf5320d8bdea79afa7d4057c4a6f diff --git a/tests/Windows.Tests.ps1 b/tests/Windows.Tests.ps1 index 72cdbce..5a43dde 100644 --- a/tests/Windows.Tests.ps1 +++ b/tests/Windows.Tests.ps1 @@ -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