Skip to content

Commit 2ba9e99

Browse files
committed
CI-build: extend test OW cross-compile to 1.9 and 2.0 versions
1 parent 4b4e451 commit 2ba9e99

File tree

1 file changed

+24
-15
lines changed

1 file changed

+24
-15
lines changed

.github/workflows/ci-build.yml

+24-15
Original file line numberDiff line numberDiff line change
@@ -53,21 +53,30 @@ jobs:
5353
strategy:
5454
matrix:
5555
host:
56-
- name: Windows
57-
id: nt
58-
image: windows-latest
59-
cmd: build.bat watcom upx english
60-
- name: Mac OSX-ARM
61-
id: osx
62-
image: macos-latest
63-
cmd: ./build.sh watcom upx english
64-
- name: Linux
65-
id: linux
66-
image: ubuntu-latest
67-
cmd: ./build.sh watcom upx english
68-
56+
- name: 'Windows'
57+
id: 'nt'
58+
image: 'windows-latest'
59+
cmd: 'build.bat watcom upx english'
60+
- name: 'Mac OSX-ARM'
61+
id: 'osx'
62+
image: 'macos-latest'
63+
cmd: './build.sh watcom upx english'
64+
- name: 'Linux'
65+
id: 'linux'
66+
image: 'ubuntu-latest'
67+
cmd: './build.sh watcom upx english'
68+
ow:
69+
- name: '1.9'
70+
id: '1.9'
71+
- name: '2.0'
72+
id: '2.0-64'
73+
exclude:
74+
- host:
75+
id: 'osx'
76+
- ow:
77+
name: '1.9'
6978
runs-on: ${{matrix.host.image}}
70-
name: Test OW cross-compile (${{matrix.host.name}})
79+
name: Test OW ${{matrix.ow.name}} cross-compile (${{matrix.host.name}})
7180

7281
steps:
7382
- uses: actions/checkout@v4
@@ -81,7 +90,7 @@ jobs:
8190
- name: Open Watcom install
8291
uses: open-watcom/setup-watcom@v0
8392
with:
84-
version: "2.0-64"
93+
version: ${{matrix.ow.id}}
8594

8695
- name: build
8796
uses: "./.github/actions/build"

0 commit comments

Comments
 (0)