Skip to content

Commit

Permalink
Fixing test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
scaprile committed Sep 12, 2023
1 parent 53baa18 commit 4f005f9
Show file tree
Hide file tree
Showing 4 changed files with 399 additions and 388 deletions.
20 changes: 15 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,17 @@ jobs:
cc: [gcc, clang, g++, clang++]
target: [test, mip_test]
ssl: [none, MBEDTLS] #ssl: [none, MBEDTLS, OPENSSL]
select: ["-DMG_ENABLE_POLL=0 -DMG_ENABLE_EPOLL=0", "-DMG_ENABLE_POLL=1 -DMG_ENABLE_EPOLL=0", "-DMG_ENABLE_POLL=0 -DMG_ENABLE_EPOLL=1"]
include:
- select: "-DMG_ENABLE_POLL=0 -DMG_ENABLE_EPOLL=0"
ssl: none
- select: "-DMG_ENABLE_POLL=1 -DMG_ENABLE_EPOLL=0"
ssl: none
# select: "-DMG_ENABLE_POLL=0 -DMG_ENABLE_EPOLL=1" is default for Linux and already included above
name: linux ${{ matrix.target }} CC=${{ matrix.cc }} SSL=${{ matrix.ssl }} TFLAGS=${{ matrix.select }}
env:
CC: ${{ matrix.cc }}
SSL: ${{ matrix.ssl }}
TFLAGS: {{ matrix.select }}
TFLAGS: ${{ matrix.select }}
steps:
- uses: actions/checkout@v3
with: { fetch-depth: 2 }
Expand Down Expand Up @@ -57,13 +62,14 @@ jobs:
macos:
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
ssl: [none] #ssl: [none, MBEDTLS, OPENSSL]
select: ["-DMG_ENABLE_POLL=0 -DMG_ENABLE_EPOLL=0", "-DMG_ENABLE_POLL=1 -DMG_ENABLE_EPOLL=0", "-DMG_ENABLE_POLL=0 -DMG_ENABLE_EPOLL=1"]
name: macos SSL=${{ matrix.ssl }} TFLAGS=${{ matrix.select }}
env:
SSL: ${{ matrix.ssl }}
TFLAGS: {{ matrix.select }}
TFLAGS: ${{ matrix.select }}
HOMEBREW_NO_AUTO_UPDATE: 1
steps:
- uses: actions/checkout@v3
Expand All @@ -80,12 +86,16 @@ jobs:
windows:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
target: [vc98, vc17, vc22, mingw, mingw++]
select: ["-DMG_ENABLE_POLL=0 -DMG_ENABLE_EPOLL=0", "-DMG_ENABLE_POLL=1 -DMG_ENABLE_EPOLL=0", "-DMG_ENABLE_POLL=0 -DMG_ENABLE_EPOLL=1"]
select: [-DMG_ENABLE_POLL=0, -DMG_ENABLE_POLL=1]
exclude:
- target: vc98
select: -DMG_ENABLE_POLL=1
name: windows ${{ matrix.target }} TFLAGS=${{ matrix.select }}
env:
TFLAGS: {{ matrix.select }}
TFLAGS: ${{ matrix.select }}
steps:
- uses: actions/checkout@v3
with: { fetch-depth: 2 }
Expand Down
Loading

0 comments on commit 4f005f9

Please sign in to comment.