mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-01-27 05:22:20 +01:00
add environment matrix to msys workflow
This commit is contained in:
16
.github/workflows/msys2.yml
vendored
16
.github/workflows/msys2.yml
vendored
@@ -13,21 +13,27 @@ concurrency:
|
||||
# END OF COMMON SECTION
|
||||
|
||||
jobs:
|
||||
msys2-ucrt64:
|
||||
msys2:
|
||||
runs-on: windows-latest
|
||||
defaults:
|
||||
run:
|
||||
shell: msys2 {0}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- { sys: ucrt64, compiler: mingw-w64-ucrt-x86_64-gcc }
|
||||
- { sys: mingw64, compiler: mingw-w64-x86_64-gcc }
|
||||
- { sys: msys, compiler: gcc }
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: msys2/setup-msys2@v2
|
||||
with:
|
||||
path: wolfssl
|
||||
msystem: UCRT64
|
||||
msystem: ${{ matrix.sys }}
|
||||
update: true
|
||||
install: git mingw-w64-ucrt-x86_64-gcc autotools base-devel autoconf
|
||||
install: git ${{matrix.compiler}} autotools base-devel autoconf netcat
|
||||
- name: configure wolfSSL
|
||||
run: ./autogen.sh && ./configure --enable-all --disable-crl-monitor
|
||||
run: ./autogen.sh && ./configure CFLAGS="-DUSE_CERT_BUFFERS_2048 -DUSE_CERT_BUFFERS_256"
|
||||
- name: build wolfSSL
|
||||
run: make check
|
||||
- name: Display log
|
||||
|
||||
Reference in New Issue
Block a user