Import updated license header for macos adapter and example. #179
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: DB compatibility testing | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
valkey: | |
name: Valkey ${{ matrix.valkey-version }} | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- valkey-version: '7.2.5' | |
steps: | |
- name: Prepare | |
uses: awalsh128/cache-apt-pkgs-action@a6c3917cc929dd0345bfb2d3feaf9101823370ad # v1.4.2 | |
with: | |
packages: libevent-dev | |
version: 1.0 | |
- name: Install Valkey for non-cluster tests | |
run: | | |
git clone --depth 1 --branch ${{ matrix.valkey-version }} https://github.com/valkey-io/valkey.git | |
cd valkey && BUILD_TLS=yes make install | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Create build folder | |
run: cmake -E make_directory build | |
- name: Generate makefiles | |
shell: bash | |
working-directory: build | |
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=Release -DENABLE_IPV6_TESTS=ON -DTEST_WITH_VALKEY_VERSION=${{ matrix.valkey-version }} .. | |
- name: Build | |
shell: bash | |
working-directory: build | |
run: VERBOSE=1 make | |
- name: Setup clusters | |
shell: bash | |
working-directory: build | |
run: make start | |
- name: Wait for clusters to start.. | |
uses: kibertoad/wait-action@99f6f101c5be7b88bb9b41c0d3b810722491b8e5 # 1.0.1 | |
with: | |
time: '40s' | |
- name: Run tests | |
shell: bash | |
working-directory: build | |
run: make test | |
- name: Teardown clusters | |
working-directory: build | |
shell: bash | |
run: make stop | |
redis-comp: | |
name: Redis ${{ matrix.redis-version }} | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- redis-version: '7.2.4' | |
- redis-version: '7.0.15' | |
- redis-version: '6.2.14' | |
steps: | |
- name: Prepare | |
uses: awalsh128/cache-apt-pkgs-action@a6c3917cc929dd0345bfb2d3feaf9101823370ad # v1.4.2 | |
with: | |
packages: libevent-dev | |
version: 1.0 | |
- name: Install Redis for non-cluster tests | |
run: | | |
git clone --depth 1 --branch ${{ matrix.redis-version }} https://github.com/redis/redis.git | |
cd redis && BUILD_TLS=yes make install | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Create build folder | |
run: cmake -E make_directory build | |
- name: Generate makefiles | |
shell: bash | |
working-directory: build | |
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=Release -DENABLE_IPV6_TESTS=ON -DTEST_WITH_REDIS_VERSION=${{ matrix.redis-version }} .. | |
- name: Build | |
shell: bash | |
working-directory: build | |
run: VERBOSE=1 make | |
- name: Setup clusters | |
shell: bash | |
working-directory: build | |
run: make start | |
- name: Wait for clusters to start.. | |
uses: kibertoad/wait-action@99f6f101c5be7b88bb9b41c0d3b810722491b8e5 # 1.0.1 | |
with: | |
time: '40s' | |
- name: Run tests | |
shell: bash | |
working-directory: build | |
run: make test | |
- name: Teardown clusters | |
working-directory: build | |
shell: bash | |
run: make stop |