Update licenese in source file #135
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: | |
test-ubuntu-with-redis-5: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: clone and make redis | |
run: | | |
sudo apt-get install git | |
git clone https://github.com/redis/redis | |
cd redis | |
git checkout 5.0 | |
make REDIS_CFLAGS='-Werror' BUILD_TLS=yes | |
- name: make tairhash | |
run: | | |
mkdir build | |
cd build | |
cmake ../ | |
make | |
- name: test | |
run: | | |
sudo apt-get install tcl8.6 tclx | |
work_path=$(pwd) | |
module_path=$work_path/lib | |
sed -e "s#your_path#$module_path#g" tests/tairhash.tcl > redis/tests/unit/type/tairhash.tcl | |
sed -i 's#unit/type/string#unit/type/tairhash#g' redis/tests/test_helper.tcl | |
cd redis | |
./runtest --stack-logging --single unit/type/tairhash | |
test-ubuntu-with-redis-6: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: clone and make redis | |
run: | | |
sudo apt-get install git | |
git clone https://github.com/redis/redis | |
cd redis | |
git checkout 6.0 | |
make REDIS_CFLAGS='-Werror' BUILD_TLS=yes | |
- name: make tairhash | |
run: | | |
mkdir build | |
cd build | |
cmake ../ | |
make | |
- name: test | |
run: | | |
sudo apt-get install tcl8.6 tclx | |
work_path=$(pwd) | |
module_path=$work_path/lib | |
sed -e "s#your_path#$module_path#g" tests/tairhash.tcl > redis/tests/unit/type/tairhash.tcl | |
sed -i 's#unit/type/string#unit/type/tairhash#g' redis/tests/test_helper.tcl | |
cd redis | |
./runtest --stack-logging --single unit/type/tairhash | |
test-ubuntu-with-redis-unstable-sort-mode: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: clone and make redis | |
run: | | |
sudo apt-get install git | |
git clone https://github.com/redis/redis | |
cd redis | |
git checkout unstable | |
make REDIS_CFLAGS='-Werror' BUILD_TLS=yes | |
- name: make tairhash | |
run: | | |
mkdir build | |
cd build | |
cmake ../ -DSORT_MODE=yes | |
make | |
- name: test | |
run: | | |
sudo apt-get install tcl8.6 tclx | |
work_path=$(pwd) | |
module_path=$work_path/lib | |
sed -e "s#your_path#$module_path#g" tests/tairhash.tcl > redis/tests/unit/type/tairhash.tcl | |
sed -i 's#unit/type/string#unit/type/tairhash#g' redis/tests/test_helper.tcl | |
cd redis | |
./runtest --stack-logging --single unit/type/tairhash | |