1
0
Fork 0
mirror of https://github.com/dragonflydb/dragonfly.git synced 2024-12-15 17:51:06 +00:00
dragonflydb-dragonfly/.github/workflows/ci.yml

83 lines
3.1 KiB
YAML
Raw Normal View History

2021-12-21 08:50:46 +00:00
name: ci-tests
on:
2022-05-05 10:38:22 +00:00
# push:
# branches: [ main ]
2021-12-21 08:50:46 +00:00
pull_request:
branches: [main]
2021-12-21 08:50:46 +00:00
workflow_dispatch:
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 2
- uses: actions/setup-python@v3
- name: Install dependencies
run: |
python -m pip install pre-commit
python -m pip freeze --local
- uses: actions/cache@v3
with:
path: ~/.cache/pre-commit
key: pre-commit|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}
- name: Run pre-commit checks
run: pre-commit run --show-diff-on-failure --color=always --from-ref HEAD^ --to-ref HEAD
shell: bash
2021-12-21 08:50:46 +00:00
build:
# The CMake configure and build commands are platform agnostic and should work equally
# well on Windows or Mac. You can convert this to a matrix build if you need
# cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
runs-on: ubuntu-latest
strategy:
matrix:
# Test of these containers
container: ["ubuntu-dev:20", "alpine-dev:latest"]
build-type: [Debug, Release]
timeout-minutes: 30
container:
2022-05-11 17:37:25 +00:00
image: ghcr.io/romange/${{ matrix.container }}
# credentials:
# username: ${{ github.repository_owner }}
# password: ${{ secrets.GITHUB_TOKEN }}
2021-12-21 08:50:46 +00:00
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Install dependencies
run: |
2021-12-21 08:50:46 +00:00
uname -a
cmake --version
mkdir -p ${{github.workspace}}/build
- name: Cache build deps
id: cache-deps
uses: actions/cache@v3
with:
path: |
~/.ccache
${{github.workspace}}/build/_deps
key: ${{ runner.os }}-deps-${{ github.base_ref }}-${{ github.sha }}
restore-keys: |
${{ runner.os }}-deps-${{ github.base_ref }}-
- name: Configure CMake
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
run: |
cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{matrix.build-type}} -GNinja -DCMAKE_CXX_COMPILER_LAUNCHER=ccache
2022-01-14 17:22:14 +00:00
cd ${{github.workspace}}/build && pwd
du -hcs _deps/
- name: Build & Test
run: |
2022-01-14 17:22:14 +00:00
cd ${{github.workspace}}/build
ninja src/all
ccache --show-stats
echo Run ctest -V -L DFLY
#GLOG_logtostderr=1 GLOG_vmodule=transaction=1,engine_shard_set=1
GLOG_logtostderr=1 GLOG_vmodule=rdb_load=1,rdb_save=1,snapshot=1 ctest -V -L DFLY
./dragonfly_test --mem_defrag_threshold=0.05 # trying to catch issue with defrag
2022-01-14 17:22:14 +00:00
# GLOG_logtostderr=1 GLOG_vmodule=transaction=1,engine_shard_set=1 CTEST_OUTPUT_ON_FAILURE=1 ninja server/test