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:
|
2022-11-05 20:16:57 +00:00
|
|
|
branches: [main]
|
2021-12-21 08:50:46 +00:00
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
2022-11-05 20:16:57 +00:00
|
|
|
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
|
2022-02-19 20:56:09 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
# Test of these containers
|
2022-04-25 09:06:31 +00:00
|
|
|
container: ["ubuntu-dev:20", "alpine-dev:latest"]
|
2022-12-11 11:52:45 +00:00
|
|
|
build-type: [Debug, Release]
|
2023-05-23 11:22:28 +00:00
|
|
|
compiler: [{cxx: g++, c: gcc}]
|
|
|
|
cxx_flags: ["-Werror"]
|
|
|
|
include:
|
|
|
|
- container: "alpine-dev:latest"
|
|
|
|
build-type: Debug
|
|
|
|
compiler: {cxx: clang++, c: clang}
|
|
|
|
cxx_flags: ""
|
2023-08-27 07:57:29 +00:00
|
|
|
timeout-minutes: 60
|
2023-08-25 07:58:11 +00:00
|
|
|
env:
|
2023-08-27 07:57:29 +00:00
|
|
|
SCCACHE_ERROR_LOG: /tmp/sccache_log.txt
|
2023-08-25 07:58:11 +00:00
|
|
|
|
2022-11-05 20:16:57 +00:00
|
|
|
container:
|
2022-05-11 17:37:25 +00:00
|
|
|
image: ghcr.io/romange/${{ matrix.container }}
|
2023-03-01 14:22:33 +00:00
|
|
|
credentials:
|
|
|
|
username: ${{ github.repository_owner }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
2021-12-21 08:50:46 +00:00
|
|
|
steps:
|
2022-11-05 20:16:57 +00:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2021-12-21 08:50:46 +00:00
|
|
|
uname -a
|
|
|
|
cmake --version
|
2022-01-14 12:55:13 +00:00
|
|
|
mkdir -p ${{github.workspace}}/build
|
2023-08-25 07:58:11 +00:00
|
|
|
|
2023-09-10 07:23:51 +00:00
|
|
|
- name: Write GCS service account key
|
|
|
|
shell: bash
|
|
|
|
env:
|
|
|
|
GCS_SERVICE_ACCOUNT_KEY: ${{ secrets.GCS_SERVICE_ACCOUNT_KEY }}
|
|
|
|
run: |
|
|
|
|
echo "$GCS_SERVICE_ACCOUNT_KEY" > /tmp/key.json
|
|
|
|
|
2023-08-25 07:58:11 +00:00
|
|
|
- name: Run sccache-cache
|
|
|
|
uses: mozilla-actions/sccache-action@v0.0.3
|
|
|
|
|
|
|
|
- name: Configure Cache Env
|
|
|
|
uses: actions/github-script@v6
|
2022-11-05 20:16:57 +00:00
|
|
|
with:
|
2023-08-25 07:58:11 +00:00
|
|
|
script: |
|
2023-09-10 07:23:51 +00:00
|
|
|
core.exportVariable('SCCACHE_GCS_KEY_PATH', '/tmp/key.json');
|
|
|
|
core.exportVariable('SCCACHE_GCS_BUCKET', 'gh-sccache-storage')
|
|
|
|
core.exportVariable('SCCACHE_GCS_RW_MODE', 'READ_WRITE')
|
|
|
|
core.exportVariable('SCCACHE_GCS_VERBOSE_STATS', '1')
|
2022-11-05 20:16:57 +00:00
|
|
|
|
|
|
|
- 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: |
|
2023-05-22 02:21:01 +00:00
|
|
|
cmake -B ${{github.workspace}}/build \
|
|
|
|
-DCMAKE_BUILD_TYPE=${{matrix.build-type}} \
|
|
|
|
-GNinja \
|
2023-05-23 11:22:28 +00:00
|
|
|
-DCMAKE_C_COMPILER="${{matrix.compiler.c}}" \
|
|
|
|
-DCMAKE_CXX_COMPILER="${{matrix.compiler.cxx}}" \
|
2023-08-25 07:58:11 +00:00
|
|
|
-DCMAKE_CXX_COMPILER_LAUNCHER=sccache -DCMAKE_C_COMPILER_LAUNCHER=sccache \
|
2023-05-29 13:36:57 +00:00
|
|
|
-DCMAKE_CXX_FLAGS="${{matrix.cxx_flags}}" \
|
2023-05-22 02:21:01 +00:00
|
|
|
-L
|
2022-01-14 17:22:14 +00:00
|
|
|
cd ${{github.workspace}}/build && pwd
|
|
|
|
du -hcs _deps/
|
2023-08-24 13:52:24 +00:00
|
|
|
- name: Build
|
2022-11-05 20:16:57 +00:00
|
|
|
run: |
|
2022-01-14 17:22:14 +00:00
|
|
|
cd ${{github.workspace}}/build
|
2022-02-25 08:03:42 +00:00
|
|
|
ninja src/all
|
2023-08-27 07:57:29 +00:00
|
|
|
${SCCACHE_PATH} --show-stats | tee $GITHUB_STEP_SUMMARY
|
2023-08-24 13:52:24 +00:00
|
|
|
|
|
|
|
- name: Test
|
|
|
|
run: |
|
|
|
|
cd ${{github.workspace}}/build
|
2022-01-14 12:55:13 +00:00
|
|
|
echo Run ctest -V -L DFLY
|
2022-11-05 20:16:57 +00:00
|
|
|
#GLOG_logtostderr=1 GLOG_vmodule=transaction=1,engine_shard_set=1
|
2022-12-17 17:22:40 +00:00
|
|
|
GLOG_logtostderr=1 GLOG_vmodule=rdb_load=1,rdb_save=1,snapshot=1 ctest -V -L DFLY
|
2023-08-03 17:13:36 +00:00
|
|
|
|
2023-08-25 08:45:17 +00:00
|
|
|
echo "Running tests with --force_epoll and --use_zset_tree"
|
|
|
|
FLAGS_force_epoll=true FLAGS_use_zset_tree=true ctest -V -L DFLY
|
2023-08-09 08:00:46 +00:00
|
|
|
|
2023-08-03 17:13:36 +00:00
|
|
|
echo "Running tests with --cluster_mode=emulated"
|
|
|
|
FLAGS_cluster_mode=emulated ctest -V -L DFLY
|
|
|
|
|
|
|
|
echo "Running tests with both --cluster_mode=emulated & --lock_on_hashtags"
|
|
|
|
FLAGS_cluster_mode=emulated FLAGS_lock_on_hashtags=true ctest -V -L DFLY
|
|
|
|
|
2023-08-09 12:52:13 +00:00
|
|
|
./dragonfly_test
|
|
|
|
./multi_test --multi_exec_mode=1
|
|
|
|
./multi_test --multi_exec_mode=3
|
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
|
2023-08-27 07:57:29 +00:00
|
|
|
- name: Upload cache log
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: sccache_log.txt
|
|
|
|
path: /tmp/sccache_log.txt
|
|
|
|
|
2022-12-29 16:22:09 +00:00
|
|
|
lint-test-chart:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-02-10 12:28:41 +00:00
|
|
|
uses: actions/checkout@v3
|
2022-12-29 16:22:09 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Set up Helm
|
|
|
|
uses: azure/setup-helm@v3
|
|
|
|
|
|
|
|
- uses: actions/setup-python@v4
|
|
|
|
with:
|
|
|
|
python-version: '3.9'
|
|
|
|
check-latest: true
|
|
|
|
|
2023-02-28 12:32:15 +00:00
|
|
|
- name: Chart Rendering Tests
|
|
|
|
run: |
|
2023-03-08 18:05:47 +00:00
|
|
|
go test -v ./contrib/charts/dragonfly/...
|
2023-02-28 12:32:15 +00:00
|
|
|
|
2022-12-29 16:22:09 +00:00
|
|
|
- name: Set up chart-testing
|
|
|
|
uses: helm/chart-testing-action@v2.3.1
|
|
|
|
|
|
|
|
- name: Run chart-testing (list-changed)
|
|
|
|
id: list-changed
|
|
|
|
run: |
|
|
|
|
changed=$(ct list-changed --config .ct.yaml)
|
|
|
|
if [[ -n "$changed" ]]; then
|
|
|
|
echo "::set-output name=changed::true"
|
|
|
|
fi
|
|
|
|
|
|
|
|
- name: Run chart-testing (lint)
|
|
|
|
run: |
|
|
|
|
ct \
|
|
|
|
lint \
|
|
|
|
--config .ct.yaml \
|
|
|
|
${{github.event_name == 'workflow_dispatch' && '--all'}} ;
|
|
|
|
|
|
|
|
- if: steps.list-changed.outputs.changed == 'true' || github.event_name == 'workflow_dispatch'
|
|
|
|
name: Create kind cluster
|
|
|
|
uses: helm/kind-action@v1.5.0
|
|
|
|
|
2023-06-15 15:04:45 +00:00
|
|
|
- if: steps.list-changed.outputs.changed == 'true' || github.event_name == 'workflow_dispatch'
|
|
|
|
name: Getting cluster ready
|
|
|
|
run: |
|
|
|
|
kubectl label nodes chart-testing-control-plane key/node-kind=high-memory
|
|
|
|
|
2022-12-29 16:22:09 +00:00
|
|
|
- name: Run chart-testing (install)
|
|
|
|
run: |
|
|
|
|
ct \
|
|
|
|
install \
|
|
|
|
--config .ct.yaml \
|
|
|
|
--debug \
|
2022-12-30 06:30:11 +00:00
|
|
|
--helm-extra-set-args "--set=image.repository=ghcr.io/${{ github.repository }},probes=null" \
|
2022-12-29 16:22:09 +00:00
|
|
|
${{github.event_name == 'workflow_dispatch' && '--all'}} ;
|