Skip to content

Commit

Permalink
WIP: for ci-test
Browse files Browse the repository at this point in the history
  • Loading branch information
ban-nobuhiro committed Dec 22, 2023
1 parent 3356883 commit 44956ce
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ jobs:
run: |
mkdir -p build
cd build
cmake -G Ninja -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DCMAKE_PREFIX_PATH=${GITHUB_WORKSPACE}/.local -DBUILD_PWAL=OFF ..
cmake -G Ninja -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DCMAKE_PREFIX_PATH=${GITHUB_WORKSPACE}/.local -DBUILD_PWAL=OFF -DENABLE_WAITING_BYPASS=OFF ..
cmake --build . --target all --clean-first
- name: CMake_Build_with_PWAL
run: |
mkdir -p build-pwal
cd build-pwal
cmake -G Ninja -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DCMAKE_PREFIX_PATH=${GITHUB_WORKSPACE}/.local -DBUILD_PWAL=ON ..
cmake -G Ninja -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DCMAKE_PREFIX_PATH=${GITHUB_WORKSPACE}/.local -DBUILD_PWAL=ON -DENABLE_WAITING_BYPASS=OFF ..
cmake --build . --target all --clean-first
- name: CTest
Expand Down
2 changes: 1 addition & 1 deletion src/concurrency_control/ongoing_tx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ bool ongoing_tx::exist_wait_for(session* ti, Status& out_status) {
* これは待ち確認のたびにパスを一つ短絡化するため、
* get_requested_commit() の確認を噛ませていない。
*/
bool do_waiting_bypass;
bool do_waiting_bypass; // NOLINT
#if WAITING_BYPASS
# ifdef WAITING_BYPASS_TO_ROOT
do_waiting_bypass = true;
Expand Down

0 comments on commit 44956ce

Please sign in to comment.