Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
s0l0ist committed Sep 30, 2024
1 parent 506e3bf commit 0f81737
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 27 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-24.04, macos-14]
golang-version: ['1.20', '1.21']
golang-version: ['1.21']
steps:
- name: Set up Golang ${{ matrix.golang-version }}
uses: actions/setup-go@v5
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ jobs:
- '.clang-format'
- '.bazelrc'
- '.bazelversion'
- 'MODULE.bazel'
- 'MODULE.bazel.lock'
- 'WORKSPACE'
go:
- 'private_set_intersection/go/**'
Expand All @@ -62,19 +64,25 @@ jobs:
- '.eslint*'
- '.bazelrc'
- '.bazelversion'
- 'MODULE.bazel'
- 'MODULE.bazel.lock'
- 'WORKSPACE'
python:
- 'private_set_intersection/python/**'
- '.flake8'
- '.pyproject.toml'
- '.bazelrc'
- '.bazelversion'
- 'MODULE.bazel'
- 'MODULE.bazel.lock'
- 'WORKSPACE'
rust:
- 'private_set_intersection/rust/**'
- 'third_party/**'
- '.bazelrc'
- '.bazelversion'
- 'MODULE.bazel'
- 'MODULE.bazel.lock'
- 'WORKSPACE'
Core:
needs: changes
Expand Down
37 changes: 12 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,39 +130,26 @@ git_repository(
branch = "master",
)
load("@org_openmined_psi//private_set_intersection:preload.bzl", "psi_preload")
psi_preload()
load("@org_openmined_psi//private_set_intersection:deps.bzl", "psi_deps")
psi_deps()
load("@rules_python//python:pip.bzl", "pip_parse")
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
pip_parse(
name = "pip_deps",
# Generated via pip-compile requirements.in
requirements_lock = "@org_openmined_psi//private_set_intersection/python:requirements.txt",
git_repository(
name = "emsdk",
remote = "https://github.com/emscripten-core/emsdk.git",
strip_prefix = "bazel",
tag = "3.1.67",
)
load("@pip_deps//:requirements.bzl", "install_deps")
load("@emsdk//:deps.bzl", emsdk_deps = "deps")
install_deps()
emsdk_deps()
load("@build_bazel_rules_nodejs//:index.bzl", "node_repositories", "npm_install")
load("@emsdk//:emscripten_deps.bzl", emsdk_emscripten_deps = "emscripten_deps")
node_repositories()
emsdk_emscripten_deps(emscripten_version = "3.1.67")
npm_install(
name = "npm",
package_json = "//:package.json",
package_lock_json = "//:package-lock.json",
)
load("@emsdk//:emscripten_deps.bzl", emsdk_emscripten_deps = "emscripten_deps")
load("@emsdk//:toolchains.bzl", "register_emscripten_toolchains")
emsdk_emscripten_deps()
register_emscripten_toolchains()
```

A full description of the protocol can be found in the documentation of the
Expand Down
2 changes: 1 addition & 1 deletion private_set_intersection/rust/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ bazel test //private_set_intersection/rust/...
Run the benchmark:

```
bazel run -c opt //private_set_intersection/rust:bench --experimental_isolated_extension_usages
bazel run -c opt //private_set_intersection/rust:bench
```

## Developing
Expand Down

0 comments on commit 0f81737

Please sign in to comment.