Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add serial backend config for curve25519_dalek_backend #16515

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
d4b5fb0
feat: Add serial backend config for curve25519_dalek_backend
bakjos Apr 26, 2024
289b900
feat: Disable digest
bakjos Apr 26, 2024
6b49c48
feat: Add more loging
bakjos Apr 26, 2024
11ffa6e
feat: Update ring version
bakjos Apr 26, 2024
f815baa
feat: Update getrandom crate version
bakjos Apr 26, 2024
1710e3f
feat: Use fiat instead of serial
bakjos Apr 26, 2024
5dc6ae7
feat: Use default getrandom
bakjos Apr 26, 2024
6f0d456
feat: Test without custom backend
bakjos Apr 26, 2024
79a509d
feat: Rollback dependencies
bakjos Apr 29, 2024
8a6fd37
feat: Add more log to deno_crypto
bakjos Apr 29, 2024
1698643
feat: Use telemery for logs
bakjos Apr 29, 2024
1c7bf1e
feat: Switch crypto method
bakjos Apr 30, 2024
cf2eecb
feat: Sleep after trace
bakjos Apr 30, 2024
6f37a22
feat: Update nightly to latest
bakjos Apr 30, 2024
8f1019c
feat: Downgrade nightly version
bakjos Apr 30, 2024
e55d362
feat: add llvm assertions
bakjos May 3, 2024
5a47097
feat: Use 20240416 toolchain
bakjos May 3, 2024
3667697
feat: Rollback toolchain to 2024-04-09
bakjos May 3, 2024
08006cc
feat: Downgrade nightly version to 2024-03-15
bakjos May 3, 2024
edac238
feat: Downgrade nightly version to 2024-02-03
bakjos May 4, 2024
a920875
feat: Downgrade nightly version to 2024-02-05
bakjos May 4, 2024
a954804
feat: Downgrade nightly version to 2024-02-20
bakjos May 4, 2024
e8bc4fe
feat: Downgrade nightly version to 2024-02-28
bakjos May 4, 2024
816115c
feat: Downgrade nightly version to 2024-03-11
bakjos May 4, 2024
a5018c8
feat: Downgrade nightly version to 2024-03-20
bakjos May 4, 2024
1ed8b9a
feat: Downgrade nightly version to 2024-03-18
bakjos May 4, 2024
b23ab88
feat: Downgrade nightly version to 2024-03-14
bakjos May 4, 2024
815880d
feat: Downgrade nightly version to 2024-03-13
bakjos May 4, 2024
433878c
feat: Downgrade nightly version to 2024-03-12
bakjos May 4, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ci/build-ci-image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ cat ../rust-toolchain
# shellcheck disable=SC2155

# REMEMBER TO ALSO UPDATE ci/docker-compose.yml
export BUILD_ENV_VERSION=v20240424
export BUILD_ENV_VERSION=v20240312-nightly

export BUILD_TAG="public.ecr.aws/w1p7b4n3/rw-build-env:${BUILD_ENV_VERSION}"

Expand Down
10 changes: 5 additions & 5 deletions ci/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ services:
retries: 5

source-test-env:
image: public.ecr.aws/w1p7b4n3/rw-build-env:v20240424
image: public.ecr.aws/w1p7b4n3/rw-build-env:v20240312-nightly
depends_on:
- mysql
- db
Expand All @@ -84,7 +84,7 @@ services:
- ..:/risingwave

sink-test-env:
image: public.ecr.aws/w1p7b4n3/rw-build-env:v20240424
image: public.ecr.aws/w1p7b4n3/rw-build-env:v20240312-nightly
depends_on:
- mysql
- db
Expand All @@ -103,12 +103,12 @@ services:


rw-build-env:
image: public.ecr.aws/w1p7b4n3/rw-build-env:v20240424
image: public.ecr.aws/w1p7b4n3/rw-build-env:v20240312-nightly
volumes:
- ..:/risingwave

ci-flamegraph-env:
image: public.ecr.aws/w1p7b4n3/rw-build-env:v20240424
image: public.ecr.aws/w1p7b4n3/rw-build-env:v20240312-nightly
# NOTE(kwannoel): This is used in order to permit
# syscalls for `nperf` (perf_event_open),
# so it can do CPU profiling.
Expand All @@ -119,7 +119,7 @@ services:
- ..:/risingwave

regress-test-env:
image: public.ecr.aws/w1p7b4n3/rw-build-env:v20240424
image: public.ecr.aws/w1p7b4n3/rw-build-env:v20240312-nightly
depends_on:
db:
condition: service_healthy
Expand Down
2 changes: 1 addition & 1 deletion ci/rust-toolchain
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# 3. (optional) **follow the instructions in lints/README.md** to update the toolchain and dependencies for lints

[toolchain]
channel = "nightly-2024-04-24"
channel = "nightly-2024-03-12"
Loading