ci: Wire up OS/2 builds to GitHub Actions.

This commit is contained in:
Ryan C. Gordon 2022-04-16 11:24:53 -04:00
parent 0ae9467685
commit b975bb679b
No known key found for this signature in database
GPG Key ID: FA148B892AB48044
1 changed files with 22 additions and 0 deletions

22
.github/workflows/os2.yml vendored Normal file
View File

@ -0,0 +1,22 @@
name: Build (OS/2)
on: [push, pull_request]
jobs:
os2:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: open-watcom/setup-watcom@v0
- name: Build SDL2
run: |
wmake -f Makefile.os2
- name: Build tests
run: |
cd test && wmake -f Makefile.os2
cd ..
- name: distclean
run: |
wmake -f Makefile.os2 distclean
cd test && wmake -f Makefile.os2 distclean
cd ..