Skip to content

Commit

Permalink
Remove Perl workaround in Github Actions config
Browse files Browse the repository at this point in the history
The Github Actions runners for Windows now place Strawberry Perl
earlier in the path than git-bash.
  • Loading branch information
greghudson committed Mar 16, 2020
1 parent b009cca commit 08851ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
cd src
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars32.bat"
set
set PATH=C:\Strawberry\perl\bin;%PATH%;%wix%bin
set PATH=%PATH%;%wix%bin
nmake -f Makefile.in prep-windows
nmake
nmake install
Expand All @@ -87,7 +87,7 @@ jobs:
cd src
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
set
set PATH=C:\Strawberry\perl\bin;%PATH%;%wix%bin;"%WindowsSdkVerBinPath%"\x86
set PATH=%PATH%;%wix%bin;"%WindowsSdkVerBinPath%"\x86
nmake clean
nmake
nmake install
Expand Down

0 comments on commit 08851ee

Please sign in to comment.