Fix possible use after free in SocketServer, some simplifications #285
This file contains 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: C/C++ CI | |
on: | |
push: | |
branches: [ master, develop, test-ci ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-13] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: configure | |
run: | | |
cd ${{ github.workspace }} | |
mkdir build | |
cd build | |
cmake -DASL_TESTS=ON -DASL_BUILD_SHARED=OFF .. | |
- name: make | |
run: | | |
cd build | |
cmake --build . | |
- name: test | |
run: | | |
cd build | |
ctest --output-on-failure |