summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMarti Maria <marti.maria@littlecms.com>2021-11-07 11:46:01 +0100
committerMarti Maria <marti.maria@littlecms.com>2021-11-07 11:46:01 +0100
commited824204c2cd32869ea3217a605df1eb8ae82951 (patch)
treec650f7eb313815d1dfd018dd14251a1c0c9081c3 /.github
parent7327e35b7729d1f1559f645c46d7ba39d61d82c9 (diff)
downloadlcms2-ed824204c2cd32869ea3217a605df1eb8ae82951.tar.gz
Update build.yml
Another try
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml30
1 files changed, 19 insertions, 11 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 2846aca..6b7d85f 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -39,25 +39,33 @@ jobs:
steps:
- uses: actions/checkout@v2
+ - uses: ilammy/msvc-dev-cmd@v1
+ with:
+ arch: x64
+
- name: Build Windows 64 bit
- run: |
- devenv .\Projects\VC2019\lcms2.sln /Rebuild "Release|x64" /Project testbed
+ run: devenv .\Projects\VC2019\lcms2.sln /Rebuild "Release|x64" /Project testbed
- - name: Run tests
- working-directory: testbed
- run: testbed
+ - name: Run tests
+ run: |
+ cd testbed
+ testbed
Windows-32:
runs-on: windows-latest
steps:
- - uses: ilammy/msvc-dev-cmd@v1
+ - uses: actions/checkout@v2
+ - uses: ilammy/msvc-dev-cmd@v1
+ with:
+ arch: win32
+
- name: Build Windows 32 bit
- run: |
- devenv .\Projects\VC2019\lcms2.sln /Rebuild "Release|Win32" /Project testbed
+ run: devenv .\Projects\VC2019\lcms2.sln /Rebuild "Release|Win32" /Project testbed
- - name: Run tests
- working-directory: testbed
- run: testbed
+ - name: Run tests
+ run: |
+ cd testbed
+ testbed
Ubuntu-meson: