Skip to content

Commit d95df7b

Browse files
Restored original vscode
1 parent 4433b85 commit d95df7b

3 files changed

Lines changed: 6 additions & 33 deletions

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
1919
- name: Test bundled
2020
run: |
21-
wasm-pack test --node --all-features
21+
wasm-pack test --node
2222
- name: Test use prebuild libsqlite3.a
2323
if: matrix.os != 'windows-latest'
2424
run: |
@@ -74,7 +74,6 @@ jobs:
7474
run: |
7575
rustup target add wasm32-unknown-unknown
7676
cargo clippy --no-default-features --target wasm32-unknown-unknown -- -D warnings
77-
cargo clippy --all-features --target wasm32-unknown-unknown -- -D warnings
7877
7978
test_implement_a_vfs:
8079
runs-on: ubuntu-latest
@@ -155,35 +154,6 @@ jobs:
155154
cd extensions/sqlite-vec
156155
wasm-pack test --node
157156
158-
test_sqlite_wasm_uuid4:
159-
strategy:
160-
matrix:
161-
os: [ubuntu-latest]
162-
runs-on: ${{ matrix.os }}
163-
steps:
164-
- uses: actions/checkout@v4
165-
- name: Install wasm-pack
166-
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
167-
- name: Test
168-
run: |
169-
cd extensions/uuid4
170-
wasm-pack test --chrome --headless
171-
172-
test_sqlite_wasm_uuid7:
173-
strategy:
174-
matrix:
175-
os: [ubuntu-latest]
176-
runs-on: ${{ matrix.os }}
177-
steps:
178-
- uses: actions/checkout@v4
179-
- name: Install wasm-pack
180-
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
181-
- name: Test
182-
run: |
183-
cd extensions/uuid7
184-
wasm-pack test --chrome --headless
185-
186-
187157
test_sqlite_wasm_vfs:
188158
strategy:
189159
matrix:
@@ -210,7 +180,7 @@ jobs:
210180
- name: Test
211181
run: |
212182
cd tests
213-
wasm-pack test --chrome --headless --all-features
183+
wasm-pack test --chrome --headless
214184
wasm-pack test --chrome --headless --features sqlite3mc
215185
216186
test_vfs_native:

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@ pkg
33
Cargo.lock
44
node_modules
55
.DS_Store
6-
.vscode

.vscode/settings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"rust-analyzer.cargo.target": "wasm32-unknown-unknown",
3+
"rust-analyzer.cargo.features": ["bindgen"]
4+
}

0 commit comments

Comments
 (0)