Skip to content

Commit c24050d

Browse files
committed
update
1 parent 55c5b42 commit c24050d

File tree

4 files changed

+7
-11
lines changed

4 files changed

+7
-11
lines changed

.env

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
DATABASE_URL=postgresql://postgres@localhost/benchmark
22
DURATION=15
3-
#CONCURRENCIES=64,256,512
4-
CONCURRENCIES=64,128,256
3+
CONCURRENCIES=64,256,512
54
ROUTES=GET:/,GET:/user/0,POST:/user

.rtx.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[tools]
2-
ruby = "3.2"
3-
php = "8.3"
2+
ruby = "3.4"
3+
php = "8.4"
44
python = "3.14"
5-
deno = "latest"
5+
deno = "2.5.6"
6+
java = "25"

.tasks/ci.rake

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,6 @@ namespace :ci do
1919

2020
language, framework, = file.split(File::SEPARATOR)
2121

22-
unless ['javascript', 'php', 'python ', 'nim', 'java', 'd', 'guile', 'julia', 'r', 'csharp', 'fsharp', 'gleam', 'lua', 'haskell', 'kotlin', 'v', 'zig', 'perl', 'clojure'].include?(language)
23-
next
24-
end
25-
2622
config = get_config_from(File.join(Dir.pwd, language, framework))
2723

2824
engine = config.dig('framework', 'engines')&.first

run.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ while read line ; do
2828
LANGUAGE=`echo $line | awk -F '/' '{print $(NF-2)}'`
2929
FRAMEWORK=`echo $line | awk -F '/' '{print $(NF-1)}'`
3030
rm -fr ${BASEDIR}/${LANGUAGE}/${FRAMEWORK}/.results
31-
mkdir -p ${BASEDIR}/${LANGUAGE}/${FRAMEWORK}/.results/{64,128,256}
32-
sleep 30
31+
mkdir -p ${BASEDIR}/${LANGUAGE}/${FRAMEWORK}/.results/{64,256,512}
3332
make -f ${BASEDIR}/${LANGUAGE}/${FRAMEWORK}/.Makefile build
33+
sleep 30
3434
make -f ${BASEDIR}/${LANGUAGE}/${FRAMEWORK}/.Makefile warmup
3535
make -f ${BASEDIR}/${LANGUAGE}/${FRAMEWORK}/.Makefile test
3636
ret=$?

0 commit comments

Comments
 (0)