Skip to content

Commit f1417c7

Browse files
authored
Merge pull request #222 from cipherstash/feat/proxy-eql-v2-integration
Integration branch for Proxy + EQL V2
2 parents da18783 + ff2beb7 commit f1417c7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+2171
-714
lines changed

.github/workflows/benchmark.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ jobs:
3434
CS_DEFAULT_KEYSET_ID: ${{ secrets.CS_DEFAULT_KEYSET_ID }}
3535
CS_CLIENT_ID: ${{ secrets.CS_CLIENT_ID }}
3636
CS_CLIENT_KEY: ${{ secrets.CS_CLIENT_KEY }}
37+
CS_REGION: "ap-southeast-2.aws"
3738
RUST_BACKTRACE: "1"
3839
run: mise run benchmark:continuous
3940
# Download previous benchmark result from cache (if exists)

.github/workflows/test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,14 @@ jobs:
2121
- run: |
2222
mise run postgres:up --extra-args "--detach --wait"
2323
- env:
24+
# REMEMBER TO ADD ENVIRONMENT VARIABLES TO tests/docker-compose.yml
25+
# The tests/docker-compose.yml config passes the ENV vars into the container
2426
CS_WORKSPACE_ID: ${{ secrets.CS_WORKSPACE_ID }}
2527
CS_CLIENT_ACCESS_KEY: ${{ secrets.CS_CLIENT_ACCESS_KEY }}
2628
CS_DEFAULT_KEYSET_ID: ${{ secrets.CS_DEFAULT_KEYSET_ID }}
2729
CS_CLIENT_ID: ${{ secrets.CS_CLIENT_ID }}
2830
CS_CLIENT_KEY: ${{ secrets.CS_CLIENT_KEY }}
31+
CS_REGION: "ap-southeast-2.aws"
2932

3033
RUST_BACKTRACE: "1"
3134
run: |

.gitignore

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,16 @@
44
/cipherstash-proxy.local.toml
55
mise.local.toml
66
tests/pg/data**
7-
tests/sql/cipherstash-encrypt.sql
8-
tests/sql/cipherstash-encrypt-uninstall.sql
97
.vscode
108

119
rust-toolchain.toml
1210
.cargo/config.toml
1311

1412
# release artifacts
1513
/cipherstash-proxy
16-
/cipherstash-eql.sql
1714
/packages/cipherstash-proxy/eql-version-at-build-time.txt
15+
/cipherstash-encrypt.sql
16+
/cipherstash-encrypt-uninstall.sql
1817

1918
# credentials for local dev
2019
.env.proxy.docker

0 commit comments

Comments
 (0)