summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMarti Maria <marti.maria@littlecms.com>2021-11-07 11:27:29 +0100
committerMarti Maria <marti.maria@littlecms.com>2021-11-07 11:27:29 +0100
commitf3937d02e1c6f8fe04a1ef8e24fa3051046433e7 (patch)
treee0e6cd0afbf560fa726a4c8c703cdd21badeac55 /.github
parent78d553e52d2ac0b3268cd7fa8828cda6db152404 (diff)
downloadlcms2-f3937d02e1c6f8fe04a1ef8e24fa3051046433e7.tar.gz
Update build.yml
another day, another try
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml26
1 files changed, 15 insertions, 11 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index d1cc72e..230a5a8 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -38,27 +38,31 @@ jobs:
runs-on: windows-latest
steps:
+ - uses: actions/checkout@v2
- uses: ilammy/msvc-dev-cmd@v1
- - name: Build Windows 64 bit
- working-directory: Projects/VC2019
- run: devenv lcms2.sln /Rebuild "Release|x64" /Project testbed
- shell: cmd
+ with:
+ arch: x64
+ - name: Build Windows 64 bit
+ 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/VC2019
- run: devenv cms2.sln /Rebuild "Release|Win32" /Project testbed
- shell: cmd
+ - uses: actions/checkout@v2
+ - uses: ilammy/msvc-dev-cmd@v1
+ with:
+ arch: win32
+
+ - name: Build Windows 32 bit
+ run: devenv Projects\\VC2019\\cms2.sln /Rebuild "Release|Win32" /Project testbed
- name: Run tests
- working-directory: ./testbed
+ working-directory: testbed
run: testbed