summaryrefslogtreecommitdiff
path: root/src/contrib/SDL-2.30.2/.github/workflows/watcom.yml
diff options
context:
space:
mode:
author3gg <3gg@shellblade.net>2025-08-30 16:53:58 -0700
committer3gg <3gg@shellblade.net>2025-08-30 16:53:58 -0700
commit6aaedb813fa11ba0679c3051bc2eb28646b9506c (patch)
tree34acbfc9840e02cb4753e6306ea7ce978bf8b58e /src/contrib/SDL-2.30.2/.github/workflows/watcom.yml
parent8f228ade99dd3d4c8da9b78ade1815c9adf85c8f (diff)
Update to SDL3
Diffstat (limited to 'src/contrib/SDL-2.30.2/.github/workflows/watcom.yml')
-rw-r--r--src/contrib/SDL-2.30.2/.github/workflows/watcom.yml35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/contrib/SDL-2.30.2/.github/workflows/watcom.yml b/src/contrib/SDL-2.30.2/.github/workflows/watcom.yml
deleted file mode 100644
index a79cc96..0000000
--- a/src/contrib/SDL-2.30.2/.github/workflows/watcom.yml
+++ /dev/null
@@ -1,35 +0,0 @@
1name: Build (OpenWatcom)
2
3on: [push, pull_request]
4
5jobs:
6 os2:
7 name: ${{ matrix.platform.name }}
8 runs-on: windows-latest
9
10 strategy:
11 matrix:
12 platform:
13 - { name: Windows, makefile: Makefile.w32 }
14 - { name: OS/2, makefile: Makefile.os2 }
15
16 steps:
17 - uses: actions/checkout@v4
18 - uses: open-watcom/setup-watcom@v0
19 - name: Build SDL2
20 run: |
21 wmake -f ${{ matrix.platform.makefile }} ENABLE_WERROR=1
22 - name: Build tests
23 run: |
24 cd test && wmake -f ${{ matrix.platform.makefile }} ENABLE_WERROR=1
25 cd ..
26 - name: Run tests
27 if: "matrix.platform.makefile == 'Makefile.w32'"
28 run: |
29 cd test && wmake -f ${{ matrix.platform.makefile }} check-quick
30 cd ..
31 - name: distclean
32 run: |
33 wmake -f ${{ matrix.platform.makefile }} distclean
34 cd test && wmake -f ${{ matrix.platform.makefile }} distclean
35 cd ..