diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4aea99e..28d40cf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -253,9 +253,11 @@ jobs: - uses: actions/checkout@v4 - uses: open-watcom/setup-watcom@v0 - name: 'Patch makefile for OpenWatcom' - run: sed -iE -e '/Open Watcom/,/^$/s/^#([^ ])/\1/' -e '/^EXTRAOBJS=/s/=.*$/=wildargv.c/' -e 's/\.obj/.o/g' makefile.dos + run: | + find ~/watcom -name 'wild\*' + sed -Ei -e '/Open Watcom/,/^$/s/^#([^ ])/\1/' -e 's/\.obj/.o/g' makefile.dos - name: 'Compile with OpenWatcom for x86' - run: wmake -f makefile.dos + run: wmake -f makefile.dos EXTRAOBJS=wildargv.c - name: 'Strip binary' run: wstrip fvcbm.exe - uses: actions/upload-artifact@v4