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:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yml20
1 files changed, 9 insertions, 11 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 1f14fc1..2846aca 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -38,27 +38,25 @@ jobs:
runs-on: windows-latest
steps:
- - uses: ilammy/msvc-dev-cmd@v1
+ - uses: actions/checkout@v2
- name: Build Windows 64 bit
- working-directory: ./Projects
- run: devenv VC2019\lcms2.sln /Rebuild "Release|x64" /Project testbed
- shell: cmd
+ run: |
+ devenv .\Projects\VC2019\lcms2.sln /Rebuild "Release|x64" /Project testbed
- name: Run tests
- working-directory: ./testbed
+ working-directory: testbed
run: testbed
Windows-32:
runs-on: windows-latest
steps:
- uses: ilammy/msvc-dev-cmd@v1
- - name: Build Windows 32 bit
- working-directory: ./Projects
- run: devenv VC2019\lcms2.sln /Rebuild "Release|Win32" /Project testbed
- shell: cmd
-
+ - name: Build Windows 32 bit
+ run: |
+ devenv .\Projects\VC2019\lcms2.sln /Rebuild "Release|Win32" /Project testbed
+
- name: Run tests
- working-directory: ./testbed
+ working-directory: testbed
run: testbed