From 3a3c552e50fc6bd35f3c8500a819d09aba443c74 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sat, 16 Apr 2022 11:30:19 -0400 Subject: [PATCH] ci: Fix OS/2 building. Copy and pasted from SDL a little too quickly. :) --- .github/workflows/os2.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/os2.yml b/.github/workflows/os2.yml index 2ae1064..af13b9c 100644 --- a/.github/workflows/os2.yml +++ b/.github/workflows/os2.yml @@ -10,13 +10,12 @@ jobs: - uses: open-watcom/setup-watcom@v0 - name: Build SDL2 run: | + cd src wmake -f Makefile.os2 - - name: Build tests - run: | - cd test && wmake -f Makefile.os2 cd .. - name: distclean run: | + cd src wmake -f Makefile.os2 distclean - cd test && wmake -f Makefile.os2 distclean cd .. +