diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6c05140..5a5c0d0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -40,7 +40,8 @@ jobs: - uses: ilammy/msvc-dev-cmd@v1 - name: Build Windows 64 bit run: | - cd .\Projects\VC2019 + cd Projects + cd VC2019 devenv lcms2.sln /Rebuild "Release|x64" /Project testbed - name: Run tests @@ -53,7 +54,8 @@ jobs: - uses: ilammy/msvc-dev-cmd@v1 - name: Build Windows 32 bit run: | - cd .\Projects\VC2019 + cd Projects + cd VC2019 devenv lcms2.sln /Rebuild "Release|Win32" /Project testbed - name: Run tests |