Skip to content

Commit

Permalink
Move js-sdk/rust-sdk impls to respective packages rather than top-level
Browse files Browse the repository at this point in the history
  • Loading branch information
kegsay committed Jan 17, 2024
1 parent f3ba378 commit 8a71902
Show file tree
Hide file tree
Showing 10 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ jobs:
# Install whatever version of the JS SDK is in package.json
- name: Build JS SDK
run: |
cat ./js-sdk/package.json
(cd js-sdk && yarn install --frozen-lockfile && yarn build)
cp -r ./js-sdk/dist/. ./internal/api/js/chrome/dist
cat ./internal/api/js/js-sdk/package.json
(cd ./internal/api/js/js-sdk && yarn install --frozen-lockfile && yarn build)
cp -r ./internal/api/js/js-sdk/dist/. ./internal/api/js/chrome/dist
- name: Build Rust FFI bindings
run: |
Expand Down
2 changes: 1 addition & 1 deletion ENVIRONMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ The client test matrix to run. Every test is run for each given permutation. The
- Default: jj,jr,rj,rr

#### `COMPLEMENT_CRYPTO_WRITE_CONTAINER_LOGS`
If 1, writes container logs to ./tests. Useful as a debugging tool.
If 1, writes container logs to ./tests/logs. Useful as a debugging tool.
- Type: `bool`
- Default: 0
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion internal/api/rust/rust.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"time"

"github.com/matrix-org/complement-crypto/internal/api"
"github.com/matrix-org/complement-crypto/rust/matrix_sdk_ffi"
"github.com/matrix-org/complement-crypto/internal/api/rust/matrix_sdk_ffi"
"github.com/matrix-org/complement/ct"
"github.com/matrix-org/complement/must"
"golang.org/x/exp/slices"
Expand Down

0 comments on commit 8a71902

Please sign in to comment.