]> granicus.if.org Git - imagemagick/commitdiff
Use cmd as the shell.
authorDirk Lemstra <dirk@lemstra.org>
Thu, 24 Oct 2019 21:05:49 +0000 (23:05 +0200)
committerDirk Lemstra <dirk@lemstra.org>
Thu, 24 Oct 2019 21:05:49 +0000 (23:05 +0200)
.github/workflows/daily.yml
.github/workflows/master.yml

index 81d379264976a6d38b41359ec76871e78a0c6f99..f629480e22cbfe40f80bc0d68a81dbaa185ea4e5 100644 (file)
@@ -79,6 +79,7 @@ jobs:
       run: |
         cd %RUNNER_WORKSPACE%\ImageMagick-Windows
         CloneRepositories.cmd https://github.com/ImageMagick shallow
+      shell: cmd
 
     - name: Build configure
       run: |
@@ -86,11 +87,13 @@ jobs:
         cd %RUNNER_WORKSPACE%\ImageMagick-Windows\VisualMagick\configure
         devenv /upgrade configure.vcxproj
         msbuild configure.sln /m /t:Rebuild /p:Configuration=Release,Platform=Win32
+      shell: cmd
 
     - name: Configure ImageMagick
       run: |
         cd %RUNNER_WORKSPACE%\ImageMagick-Windows\VisualMagick\configure
         configure.exe /noWizard /VS2019 /${{matrix.platform}} /${{matrix.buildType}}
+      shell: cmd
 
     - name: Build ImageMagick
       run: |
@@ -99,3 +102,4 @@ jobs:
         dir /B *.sln > solution
         set /p solution=<solution
         msbuild %solution% /m /t:Rebuild /p:Configuration=Release,Platform=${{matrix.platform}}
+      shell: cmd
index c06f9f8c6ad4136c0ecceeb2fd4bac6f3f56516d..d2ebaa9118618a142a9c8beb335e2221fd336043 100644 (file)
@@ -85,6 +85,7 @@ jobs:
       run: |
         cd %RUNNER_WORKSPACE%\ImageMagick-Windows
         CloneRepositories.cmd https://github.com/ImageMagick shallow
+      shell: cmd
 
     - name: Build configure
       run: |
@@ -92,14 +93,17 @@ jobs:
         cd %RUNNER_WORKSPACE%\ImageMagick-Windows\VisualMagick\configure
         devenv /upgrade configure.vcxproj
         msbuild configure.sln /m /t:Rebuild /p:Configuration=Release,Platform=Win32
+      shell: cmd
 
     - name: Configure ImageMagick
       run: |
         cd %RUNNER_WORKSPACE%\ImageMagick-Windows\VisualMagick\configure
         configure.exe /noWizard /VS2019 /x64 /smtd
+      shell: cmd
 
     - name: Build ImageMagick
       run: |
         call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\Tools\VsDevCmd.bat"
         cd %RUNNER_WORKSPACE%\ImageMagick-Windows\VisualMagick
         msbuild VisualStaticMTD.sln /m /t:Rebuild /p:Configuration=Release,Platform=x64
+      shell: cmd