Skip to content

Commit

Permalink
feat: Downgrade nightly version to 2024-03-11
Browse files Browse the repository at this point in the history
  • Loading branch information
bakjos committed May 4, 2024
1 parent e8bc4fe commit 816115c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 16 deletions.
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=v20240228-nightly
export BUILD_ENV_VERSION=v20240311-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:v20240228-nightly
image: public.ecr.aws/w1p7b4n3/rw-build-env:v20240311-nightly
depends_on:
- mysql
- db
Expand All @@ -84,7 +84,7 @@ services:
- ..:/risingwave

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


rw-build-env:
image: public.ecr.aws/w1p7b4n3/rw-build-env:v20240228-nightly
image: public.ecr.aws/w1p7b4n3/rw-build-env:v20240311-nightly
volumes:
- ..:/risingwave

ci-flamegraph-env:
image: public.ecr.aws/w1p7b4n3/rw-build-env:v20240228-nightly
image: public.ecr.aws/w1p7b4n3/rw-build-env:v20240311-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:v20240228-nightly
image: public.ecr.aws/w1p7b4n3/rw-build-env:v20240311-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-02-28"
channel = "nightly-2024-03-11"
15 changes: 6 additions & 9 deletions e2e_test/udf/deno_udf.slt
Original file line number Diff line number Diff line change
Expand Up @@ -139,19 +139,16 @@ drop function split;
statement ok
CREATE FUNCTION digest( t string ) RETURNS bytea LANGUAGE javascript RUNTIME deno AS $$
const subtle = crypto.subtle;
console.log('Generating key');
const key = await subtle.generateKey({
name: 'HMAC',
hash: 'SHA-256',
length: 256,
}, true, ['sign', 'verify']);
console.log('Creating message')
const enc = new TextEncoder();
const message = enc.encode(t);
console.log ('Signing message');
const result = await subtle.sign({
name: 'HMAC',
}, key, message);
console.log('digest finished')
const enc = new TextEncoder();
const message = enc.encode(t);
const result = await subtle.sign({
name: 'HMAC',
}, key, message);
return result;
$$ ASYNC;

Expand Down

0 comments on commit 816115c

Please sign in to comment.