Browse Source

Update Framework name (#6019)

* Add new JavaScript framework: Just-JS

* fix bug in cached world test

* remove dependency on openssl for quicker build

* fix dns for full run

* make dns more robust

* update framework in config

* bump modules
Andrew Johnston 4 năm trước cách đây
mục cha
commit
eb300d9079

+ 1 - 1
frameworks/JavaScript/just/benchmark_config.json

@@ -15,7 +15,7 @@
         "approach": "Realistic",
         "classification": "Platform",
         "database": "Postgres",
-        "framework": "None",
+        "framework": "just",
         "language": "JavaScript",
         "flavor": "just",
         "orm": "Raw",

+ 2 - 2
frameworks/JavaScript/just/just.dockerfile

@@ -5,9 +5,9 @@ RUN curl -L -o 0.0.2.tar.gz -L https://github.com/just-js/just/archive/0.0.2.tar
 RUN tar -zxvf 0.0.2.tar.gz
 WORKDIR /just-0.0.2
 RUN make runtime
-RUN curl -L -o modules.tar.gz https://github.com/just-js/modules/archive/0.0.2.tar.gz
+RUN curl -L -o modules.tar.gz https://github.com/just-js/modules/archive/0.0.3.tar.gz
 RUN tar -zxvf modules.tar.gz
-RUN mv modules-0.0.2 modules
+RUN mv modules-0.0.3 modules
 RUN JUST_HOME=$(pwd) make -C modules/picohttp/ deps http.so
 RUN JUST_HOME=$(pwd) make -C modules/html/ html.so