-
Notifications
You must be signed in to change notification settings - Fork 522
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test linking with builtin libsqlite3-dev package on Ubuntu
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Test SQLite3 builtin library | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
name: "Ubuntu Latest" | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
config: | ||
- { | ||
name: "Ubuntu Latest GCC", | ||
os: ubuntu-latest, | ||
generator: "Unix Makefiles", | ||
} | ||
- { | ||
name: "macOS Latest Clang", | ||
os: macos-latest, | ||
generator: "Unix Makefiles", | ||
} | ||
|
||
steps: | ||
- runs: sudo apt update && sudo apt install -y libsqlite3-dev | ||
- name: Checkout ${{ github.ref_name }} | ||
uses: actions/checkout@v4 | ||
- run: git submodule update --init --recursive | ||
- run: mkdir build | ||
- run: cmake -G "Unix Makefiles" -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_BUILD_TYPE=Debug -DSQLITECPP_INTERNAL_SQLITE=OFF -DSQLITECPP_BUILD_TESTS=ON -DSQLITECPP_BUILD_EXAMPLES=ON -DSQLITECPP_RUN_CPPCHECK=OFF -DSQLITECPP_RUN_CPPLINT=OFF .. | ||
working-directory: build | ||
- run: cmake --build build --config Debug | ||
- run: ctest --verbose --output-on-failure --test-dir build |