krb5 commit: Remove Perl workaround in Github Actions config
Greg Hudson <[email protected]>
| Newsgroups | gmane.comp.encryption.kerberos.cvs |
|---|---|
| Message-ID | <[email protected]> |
https://github.com/krb5/krb5/commit/08851ee770c97a3041397ea406095a81fe72f65e commit 08851ee770c97a3041397ea406095a81fe72f65e Author: Greg Hudson <[email protected]> Date: Thu Mar 12 10:49:07 2020 -0400 Remove Perl workaround in Github Actions config The Github Actions runners for Windows now place Strawberry Perl earlier in the path than git-bash. .github/workflows/build.yml | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 85d6750..2af7da2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 @@ -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