Skip to content

Commit

Permalink
Add MSYS2 build CI test
Browse files Browse the repository at this point in the history
  • Loading branch information
Lealem Amedie committed May 15, 2024
1 parent 287323a commit 42db640
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/msys2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: MSYS2 Build Test

# START OF COMMON SECTION
on:
push:
branches: [ 'master', 'main', 'release/**' ]
pull_request:
branches: [ '*' ]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# END OF COMMON SECTION

jobs:
msys2-ucrt64:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v3
- uses: msys2/setup-msys2@v2
with:
path: wolfssl
msystem: UCRT64
update: true
install: git mingw-w64-ucrt-x86_64-gcc autotools base-devel autoconf
- name: configure wolfSSL
run: ./autogen.sh && ./configure --enable-all --disable-crl-monitor
- name: build wolfSSL
run: make check
- name: Display log
run: cat test-suite.log

0 comments on commit 42db640

Please sign in to comment.