Merge pull request #335 from jtesta/handshake_backup. Fixes #334 #63
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ci | |
| on: push | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| cc: [clang, gcc] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: build with ${{ matrix.cc }} | |
| run: | | |
| make sslscan | |
| make static | |
| env: | |
| CC: ${{ matrix.cc }} | |
| build_mingw: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: install mingw-w64 | |
| run: | | |
| sudo apt-get update -qq | |
| sudo apt-get install -qq mingw-w64 | |
| - name: build with mingw-w64 | |
| run: | | |
| make -f Makefile.mingw |