Filter support; debug utils; AUTH support; fix json hash and signed-int String (#19) #118
Workflow file for this run
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: CI | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: Install Prerequisites | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y cmake libssl-dev valgrind git | |
git clone https://git.cryptomilk.org/projects/cmocka.git | |
cd cmocka | |
mkdir build | |
cd build | |
cmake .. -DCMAKE_INSTALL_PREFIX=/usr/local | |
make | |
ctest | |
sudo make install | |
# Install redis for tests against external Redis server | |
# Build Redis to run it against librdb tests | |
git clone https://github.com/redis/redis.git ~/redis | |
make -j 4 -C ~/redis | |
make -C ~/redis/tests/modules | |
shell: bash | |
- name: Build and run project | |
run: | | |
export LIBRDB_REDIS_FOLDER=~/redis/src | |
export LD_LIBRARY_PATH=/usr/local/lib/ | |
make all valgrind | |
working-directory: ${{github.workspace}} | |
build-clang: | |
runs-on: ubuntu-latest | |
env: | |
CC: clang | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: Install Prerequisites | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y cmake libssl-dev git | |
git clone https://git.cryptomilk.org/projects/cmocka.git | |
cd cmocka | |
mkdir build | |
cd build | |
cmake .. -DCMAKE_INSTALL_PREFIX=/usr/local | |
make | |
sudo make install | |
# Install redis for tests against external Redis server | |
# Build Redis to run it against librdb tests | |
git clone https://github.com/redis/redis.git ~/redis | |
make -j 4 -C ~/redis | |
make -C ~/redis/tests/modules | |
shell: bash | |
- name: Build and run project | |
run: | | |
# clang is more strict to shared-obj versioning. Satisfy its needs. | |
(cd ./deps/hiredis ; ln -s ./libhiredis.so ./libhiredis.so.1.2.1-dev) | |
export LD_LIBRARY_PATH=/usr/local/lib/ | |
export LIBRDB_REDIS_FOLDER=~/redis/src | |
make all test | |
working-directory: ${{github.workspace}} |