clean up memfree functions #8
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: linux | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
cxx: [g++-10, clang++] | |
build_type: [Debug, Release] | |
std: [11] | |
multithreading: [ON,OFF] | |
os: [ubuntu-latest] | |
include: | |
- cxx: g++-11 | |
build_type: Debug | |
std: 20 | |
os: ubuntu-20.04 | |
install: sudo apt install g++-11 | |
- cxx: clang++-11 | |
build_type: Debug | |
std: 20 | |
os: ubuntu-20.04 | |
- cxx: clang++-11 | |
build_type: Debug | |
std: 20 | |
cxxflags: -stdlib=libc++ | |
os: ubuntu-20.04 | |
install: sudo apt install libc++-11-dev libc++abi-11-dev | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Create Build Environment | |
run: | | |
${{matrix.install}} | |
cmake -E make_directory ${{runner.workspace}}/build | |
- name: Configure | |
working-directory: ${{runner.workspace}}/build | |
env: | |
CXX: ${{matrix.cxx}} | |
CXXFLAGS: ${{matrix.cxxflags}} | |
run: | | |
cmake -DCMAKE_BUILD_TYPE=${{matrix.build_type}} ${{matrix.shared}} \ | |
-DCMAKE_CXX_STANDARD=${{matrix.std}} \ | |
$GITHUB_WORKSPACE | |
- name: Build | |
working-directory: ${{runner.workspace}}/build | |
run: | | |
threads=`nproc` | |
cmake --build . --config ${{matrix.build_type}} --parallel $threads | |
- name: Test | |
working-directory: ${{runner.workspace}}/build/ | |
run: ./example |