File: os2.yml

package info (click to toggle)
libphysfs 3.2.0-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 1,300 kB
  • sloc: ansic: 18,547; perl: 210; sh: 166; cpp: 152; makefile: 3
file content (20 lines) | stat: -rw-r--r-- 398 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 physfs.dll
        run: |
          cd src
          wmake -f Makefile.os2
          cd ..
      - name: distclean
        run: |
          cd src
          wmake -f Makefile.os2 distclean
          cd ..