CLIENT-3114 Support both old and new (introduced in server 7.2) error… #201
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 |