swap to powershell syntax

This commit is contained in:
Thomas Boop
2020-09-30 11:29:15 -04:00
parent 9c7d58688a
commit 763efaef46

View File

@@ -125,8 +125,8 @@ jobs:
$boostDirectory = GetToolDirectory -ToolName "boost" -Version "${{ github.event.inputs.VERSION }}" -Architecture "${{ matrix.architecture }}"
$LD_LIBRARY = Join-Path -Path $boostDirectory -ChildPath "lib"
Write-Host "BOOST_ROOT = ${boostDirectory}"
echo "BOOST_ROOT=${boostDirectory}" >> $GITHUB_ENV
echo "LD_LIBRARY_PATH=${LD_LIBRARY}" >> $GITHUB_ENV
echo "BOOST_ROOT=${boostDirectory}" >> $env:GITHUB_ENV
echo "LD_LIBRARY_PATH=${LD_LIBRARY}" >> $env:GITHUB_ENV
- name: Run tests
run: |