🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
398 B

  1. name: Build (OS/2)
  2. on: [push, pull_request]
  3. jobs:
  4. os2:
  5. runs-on: ubuntu-latest
  6. steps:
  7. - uses: actions/checkout@v2
  8. - uses: open-watcom/setup-watcom@v0
  9. - name: Build physfs.dll
  10. run: |
  11. cd src
  12. wmake -f Makefile.os2
  13. cd ..
  14. - name: distclean
  15. run: |
  16. cd src
  17. wmake -f Makefile.os2 distclean
  18. cd ..