CLIENT-2729 Use as_event_loop_size instead of as_event_loop_capacity … #76
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: Aerospike C Client Tests | |
on: | |
push: | |
branches: [master, stage] | |
pull_request: | |
branches: [master, stage] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
LD_LIBRARY_PATH: /usr/local/lib | |
steps: | |
- name: Checkout client | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup Aerospike Database | |
uses: reugn/github-action-aerospike@v1 | |
- run: ./install_libev | |
- run: make EVENT_LIB=libev | |
- run: make EVENT_LIB=libev test | |
- run: make clean | |
- run: ./install_libuv | |
- run: make EVENT_LIB=libuv | |
- run: make EVENT_LIB=libuv test | |
- run: make clean | |
- run: ./install_libevent | |
- run: make EVENT_LIB=libevent | |
- run: make EVENT_LIB=libevent test |