From b975bb679b0e589e45be6b533d6684eed08d2d2f Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sat, 16 Apr 2022 11:24:53 -0400 Subject: [PATCH] ci: Wire up OS/2 builds to GitHub Actions. --- .github/workflows/os2.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/os2.yml diff --git a/.github/workflows/os2.yml b/.github/workflows/os2.yml new file mode 100644 index 0000000..2ae1064 --- /dev/null +++ b/.github/workflows/os2.yml @@ -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 ..