summaryrefslogtreecommitdiff
path: root/.github/workflows/main.yml
diff options
context:
space:
mode:
authorDenis Shienkov <denis.shienkov@gmail.com>2022-02-05 22:06:27 +0300
committerDenis Shienkov <denis.shienkov@gmail.com>2022-02-09 12:23:03 +0000
commitc2f6f404ad3f12d38ba8ac799c5eb5b8fb146a02 (patch)
tree92b3e72058c8ca32f6f9071af27d4533de07e582 /.github/workflows/main.yml
parenta4046a72a29e70abe482e8d35276721ace375997 (diff)
downloadqbs-c2f6f404ad3f12d38ba8ac799c5eb5b8fb146a02.tar.gz
Add support for other platforms supported by Open Watcom
This patch adds support for the following target platforms: * DOS - both 32/16 bit. * OS/2 - both 32/16 bit. * Windows - 16 bit. Also all these platforms covered in CI tests. Change-Id: Ie75d9203c50f4d61546b19328992ff0e107d9942 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to '.github/workflows/main.yml')
-rw-r--r--.github/workflows/main.yml29
1 files changed, 27 insertions, 2 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 9bacd9898..df2fca11b 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -804,8 +804,33 @@ jobs:
matrix:
config:
- {
- name: 'Run Windows tests (OpenWatcom)',
- testProfile: 'watcom-2_0_0-x86',
+ name: 'Run Windows tests (OpenWatcom DOS 32 bit)',
+ testProfile: 'watcom-2_0_0-dos-x86',
+ script: './scripts/test-baremetal.sh',
+ }
+ - {
+ name: 'Run Windows tests (OpenWatcom DOS 16 bit)',
+ testProfile: 'watcom-2_0_0-dos-x86_16',
+ script: './scripts/test-baremetal.sh',
+ }
+ - {
+ name: 'Run Windows tests (OpenWatcom OS/2 32 bit)',
+ testProfile: 'watcom-2_0_0-os2-x86',
+ script: './scripts/test-baremetal.sh',
+ }
+ - {
+ name: 'Run Windows tests (OpenWatcom OS/2 16 bit)',
+ testProfile: 'watcom-2_0_0-os2-x86_16',
+ script: './scripts/test-baremetal.sh',
+ }
+ - {
+ name: 'Run Windows tests (OpenWatcom Windows 32 bit)',
+ testProfile: 'watcom-2_0_0-windows-x86',
+ script: './scripts/test-baremetal.sh',
+ }
+ - {
+ name: 'Run Windows tests (OpenWatcom Windows 16 bit)',
+ testProfile: 'watcom-2_0_0-windows-x86_16',
script: './scripts/test-baremetal.sh',
}
- {