mirror of
https://github.com/Ryujinx/SDL.git
synced 2025-01-10 22:55:33 +00:00
55a4e1d336
also remove os2-buildbot.sh -- not needed anymore.
23 lines
495 B
YAML
23 lines
495 B
YAML
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 ..
|