Skip to content

Commit

Permalink
Try testing on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
dargueta committed Mar 18, 2024
1 parent 4c7fd2f commit e2d08e8
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,3 +95,35 @@ jobs:
run: ./configure --cc=sdcc -m ${{ matrix.architecture }}
- name: Compile
run: make library

testing-watcom:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
architecture:
- i86
- i186
- i286
- i386
steps:
- run: git config --global core.autocrlf input
- uses: actions/checkout@v3
- uses: cygwin/cygwin-install-action@v4
with:
packages: >-
coreutils
make
- name: Install Watcom
uses: open-watcom/setup-watcom@v0
with:
version: "2.0"
- name: Configure
run: ./configure --cc=owcc -m ${{ matrix.architecture }}
shell: C:\cygwin\bin\bash.exe '{0}'
- name: Compile
run: make library
- name: Test Installation
run: sudo make install
- name: Run Tests
run: make test

0 comments on commit e2d08e8

Please sign in to comment.