Skip to content

Commit

Permalink
add windows ci
Browse files Browse the repository at this point in the history
  • Loading branch information
LucioFranco committed Mar 26, 2024
1 parent bce6a96 commit 73f11ee
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
23 changes: 23 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,29 @@ jobs:
run: rm -rf libsql-ffi/bundled/SQLite3MultipleCiphers/build
- name: embedded replica encryption tests
run: cargo test -F test-encryption --package libsql-server --test tests embedded_replica
windows:
runs-on: windows-latest
name: Windows checks
steps:
- uses: hecrj/setup-rust-action@v1
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up cargo cache
uses: actions/cache@v3
continue-on-error: false
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- name: check libsql remote
run: cargo check -p libsql --no-default-features -F remote

# test-rust-wasm:
# runs-on: ubuntu-latest
Expand Down
1 change: 0 additions & 1 deletion libsql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ hrana = [
"dep:tokio",
"dep:tokio-util",
"dep:bytes",
"libsql-sys",
]
serde = ["dep:serde"]
remote = [
Expand Down

0 comments on commit 73f11ee

Please sign in to comment.