优化连接池的线程安全性,使用std::scoped_lock替代std::unique_lock #371
Workflow file for this run
This file contains hidden or 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-SQLite | |
| on: [push, pull_request] | |
| jobs: | |
| build-and-test: | |
| name: ${{ matrix.os }} (${{ matrix.configuration }}) | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| configuration: [Debug, Release] | |
| os: [macos-latest, ubuntu-latest, windows-latest] | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v2 | |
| - name: Configure cmake | |
| run: cmake -B${{ github.workspace }}/build -DCMAKE_BUILD_TYPE=${{ matrix.configuration }} -DENABLE_SQLITE3=ON | |
| - name: Build | |
| run: cmake --build ${{ github.workspace }}/build --config ${{ matrix.configuration }} | |
| - name: Test | |
| working-directory: ${{ github.workspace }}/build | |
| env: | |
| CTEST_OUTPUT_ON_FAILURE: 1 | |
| run: ctest -C ${{ matrix.configuration }} -j 1 -V |