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-07 13:36:30 +0300
committerMarti Maria <marti.maria@littlecms.com>2021-11-07 13:36:30 +0300
commit2811a832bbe2edd45a1b1b0e884b5ddde12be3a6 (patch)
treefe9234eda2b20144609b7bb4ba8ecb670fce3e60 /.github/workflows
parentc8010c6d9bd771472b5904e8a65c350f072ef95f (diff)
Revert "Update build.yml"
This reverts commit f3937d02e1c6f8fe04a1ef8e24fa3051046433e7.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yml26
1 files changed, 11 insertions, 15 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 230a5a8..d1cc72e 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -38,31 +38,27 @@ jobs:
runs-on: windows-latest
steps:
- - uses: actions/checkout@v2
- uses: ilammy/msvc-dev-cmd@v1
- with:
- arch: x64
+ - name: Build Windows 64 bit
+ working-directory: Projects/VC2019
+ run: devenv lcms2.sln /Rebuild "Release|x64" /Project testbed
+ shell: cmd
- - 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: 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
+ - 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
- name: Run tests
- working-directory: testbed
+ working-directory: ./testbed
run: testbed