Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mm2/Little-CMS.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarti Maria <marti.maria@littlecms.com>2021-11-06 22:33:04 +0300
committerMarti Maria <marti.maria@littlecms.com>2021-11-06 22:33:04 +0300
commit84b61f3bd71b6e0d9374be9d7d05e88e1ab1555b (patch)
tree5d386fb56b6be08cbad1965f1a0672816825d74e /.github/workflows
parentf76664f03371cee75ff59e3df5634dfa40ec7c17 (diff)
Update build.yml
oh, please
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yml14
1 files changed, 8 insertions, 6 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 007cf89..45682d3 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -38,9 +38,10 @@ jobs:
runs-on: windows-latest
steps:
- uses: ilammy/msvc-dev-cmd@v1
- - name: Build Windows 64 bit
- working-directory: ./Projects/VC2019
- run: devenv lcms2.sln /Rebuild "Release|x64" /Project testbed
+ - name: Build Windows 64 bit
+ run: |
+ cd Projects\VC2019
+ devenv lcms2.sln /Rebuild "Release|x64" /Project testbed
- name: Run tests
working-directory: testbed
@@ -50,9 +51,10 @@ jobs:
runs-on: windows-latest
steps:
- uses: ilammy/msvc-dev-cmd@v1
- - name: Build Windows 64 bit
- working-directory: ./Projects/VC2019
- run: devenv lcms2.sln /Rebuild "Release|Win32" /Project testbed
+ - name: Build Windows 32 bit
+ run: |
+ cd Projects\VC2019
+ devenv lcms2.sln /Rebuild "Release|Win32" /Project testbed
- name: Run tests
working-directory: testbed