Skip to content

Commit

Permalink
.github: add CONF=win32
Browse files Browse the repository at this point in the history
Extend the CI with builds under CONF=win32, cross-platform.
  • Loading branch information
yarikk authored Oct 30, 2024
1 parent 6f30fc8 commit 0db2fcf
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/c.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,19 @@ on:

jobs:
build:
strategy:
fail-fast: false
matrix:
conf: [unix, win32]

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: install build deps
if: matrix.conf == 'win32'
run: sudo apt-get install -y gcc-mingw-w64
- name: make clean
run: CONF=unix make clean
run: CONF=${{ matrix.conf }} make clean
- name: make
run: CONF=unix make
run: CONF=${{ matrix.conf }} make

0 comments on commit 0db2fcf

Please sign in to comment.