Skip to content

Commit

Permalink
updated support for benchmark language versions
Browse files Browse the repository at this point in the history
Signed-off-by: Abhishek Kumar <[email protected]>
  • Loading branch information
octonawish-akcodes committed Apr 12, 2024
1 parent d1a7052 commit 2f09f26
Showing 1 changed file with 17 additions and 19 deletions.
36 changes: 17 additions & 19 deletions config/systems.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"languages": {
"python": {
"base_images": {
"3.7": "python:3.7-slim",
"3.8": "python:3.8-slim"
"3.8": "python:3.8-slim",
"3.9": "python:3.9-slim"
},
"images": [
"run",
Expand All @@ -34,8 +34,8 @@
},
"nodejs": {
"base_images": {
"12": "node:12-slim",
"14": "node:14-slim"
"18": "node:18-slim",
"20": "node:20-slim"
},
"images": [
"run",
Expand All @@ -56,11 +56,9 @@
"python": {
"base_images": {
"3.9": "amazon/aws-lambda-python:3.9",
"3.8": "amazon/aws-lambda-python:3.8",
"3.7": "amazon/aws-lambda-python:3.7"
"3.8": "amazon/aws-lambda-python:3.8"
},
"versions": [
"3.7",
"3.8",
"3.9"
],
Expand Down Expand Up @@ -122,7 +120,9 @@
},
"nodejs": {
"base_images": {
"14": "mcr.microsoft.com/azure-functions/node:3.0-node14"
"16": "mcr.microsoft.com/azure-functions/node:3.0-node16",
"18": "mcr.microsoft.com/azure-functions/node:3.0-node18",
"20": "mcr.microsoft.com/azure-functions/node:3.0-node20"
},
"images": [
"build"
Expand Down Expand Up @@ -150,9 +150,8 @@
"languages": {
"python": {
"base_images": {
"3.7": "ubuntu:22.04",
"3.8": "ubuntu:22.04",
"3.9": "ubuntu:22.04"
"3.9": "ubuntu:22.04",
"3.10": "ubuntu:22.04"
},
"images": [
"build"
Expand All @@ -170,10 +169,8 @@
},
"nodejs": {
"base_images": {
"10": "gcr.io/google-appengine/nodejs",
"12": "gcr.io/google-appengine/nodejs",
"14": "gcr.io/google-appengine/nodejs",
"16": "gcr.io/google-appengine/nodejs"
"18": "gcr.io/google-appengine/nodejs",
"20": "gcr.io/google-appengine/nodejs"
},
"images": [
"build"
Expand All @@ -196,8 +193,9 @@
"languages": {
"python": {
"base_images": {
"3.7": "openwhisk/action-python-v3.7",
"3.9": "openwhisk/action-python-v3.9"
"3.9": "openwhisk/action-python-v3.9",
"3.10": "openwhisk/action-python-v3.10",
"3.11": "openwhisk/action-python-v3.11"
},
"images": [
"function"
Expand All @@ -216,8 +214,8 @@
},
"nodejs": {
"base_images": {
"10": "openwhisk/action-nodejs-v10",
"12": "openwhisk/action-nodejs-v12"
"18": "openwhisk/action-nodejs-v18",
"20": "openwhisk/action-nodejs-v20"
},
"images": [
"function"
Expand Down

0 comments on commit 2f09f26

Please sign in to comment.