Skip to content

bugfix: reset modifications of sqlite3_vtab #11

bugfix: reset modifications of sqlite3_vtab

bugfix: reset modifications of sqlite3_vtab #11

Workflow file for this run

name: Extensions Tests
on:
push:
branches: [ "main" ]
pull_request:
merge_group:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
PROTOC_VERSION: 3.23.4
jobs:
c-tests:
runs-on: ubuntu-latest
name: CR SQLite C Tests
steps:
- uses: hecrj/setup-rust-action@v1
- name: Checkout repository
uses: actions/checkout@v3
- name: build libsql
run: |
cd libsql-sqlite3
./configure
make libsql
- name: build
run: |
cd libsql-sqlite3/ext/crr
make loadable
- name: test
run: |
cd libsql-sqlite3/ext/crr
make test
rs-tests:
runs-on: ubuntu-latest
name: CR SQLite Rust Tests
steps:
- uses: hecrj/setup-rust-action@v1
- name: Checkout repository
uses: actions/checkout@v3
- name: build libsql
run: |
cd libsql-sqlite3
./configure
make libsql
- name: test
run: |
cd libsql-sqlite3/ext/crr/rs/core
cargo test --features=loadable_extension