Skip to content

Commit ea0f288

Browse files
dgrove-ossrabbah
authored andcommitted
remove Node.js 10 support
1 parent 99cb7ae commit ea0f288

13 files changed

Lines changed: 2 additions & 357 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ deploy:
4242
all_branches: true
4343
repo: apache/openwhisk-runtime-nodejs
4444
- provider: script
45-
script: "./tools/travis/publish.sh openwhisk nodejs10Action nightly && ./tools/travis/publish.sh openwhisk nodejs12Action nightly && ./tools/travis/publish.sh openwhisk nodejs14Action nightly && ./tools/travis/publish.sh openwhisk typescript37Action nightly"
45+
script: "./tools/travis/publish.sh openwhisk nodejs12Action nightly && ./tools/travis/publish.sh openwhisk nodejs14Action nightly && ./tools/travis/publish.sh openwhisk typescript37Action nightly"
4646
on:
4747
branch: master
4848
repo: apache/openwhisk-runtime-nodejs

README.md

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ This repository contains sources files needed to build the Node.js runtimes for
2626

2727
The following Node.js runtime versions (with kind & image labels) are generated by the build system:
2828

29-
- Node.js 10.24.1 (`nodejs:10` & `openwhisk/action-nodejs-v10`)
3029
- Node.js 12.22.1 (`nodejs:12` & `openwhisk/action-nodejs-v12`)
3130
- Node.js 14.16.1 (`nodejs:14` & `openwhisk/action-nodejs-v14`)
3231

@@ -38,12 +37,6 @@ This README documents the build, customisation and testing of these runtime imag
3837

3938
If the deployment of Apache OpenWhisk includes these images in the runtime manifest, use the `--kind` parameter to select the Node.js runtime version.
4039

41-
### Node.js v10
42-
43-
```
44-
wsk action update myAction myAction.js --kind nodejs:10
45-
```
46-
4740
### Node.js v12
4841

4942
```
@@ -60,7 +53,6 @@ wsk action update myAction myAction.js --kind nodejs:14
6053

6154
All the runtime images are published by the project to Docker Hub @ [https://hub.docker.com/u/openwhisk](https://hub.docker.com/u/openwhisk)
6255

63-
- [https://hub.docker.com/r/openwhisk/action-nodejs-v10](https://hub.docker.com/r/openwhisk/action-nodejs-v10)
6456
- [https://hub.docker.com/r/openwhisk/action-nodejs-v12](https://hub.docker.com/r/openwhisk/action-nodejs-v12)
6557
- [https://hub.docker.com/r/openwhisk/action-nodejs-v14](https://hub.docker.com/r/openwhisk/action-nodejs-v14)
6658

@@ -89,12 +81,11 @@ The `core/nodejsActionBase` folder contains the Node.js app server used to imple
8981
- Run the `distDocker` command to generate local Docker images for the different runtime versions.
9082

9183
```
92-
./gradlew core:nodejs10Action:distDocker
9384
./gradlew core:nodejs12Action:distDocker
9485
./gradlew core:nodejs14Action:distDocker
9586
```
9687

97-
This will return the following runtime images with the following names: `action-nodejs-v10`, `action-nodejs-v12` and `action-nodejs-v14`.
88+
This will return the following runtime images with the following names: `action-nodejs-v12` and `action-nodejs-v14`.
9889

9990
### Testing
10091

@@ -110,7 +101,6 @@ This will return the following runtime images with the following names: `action-
110101
- Build the custom Docker images used in local testing.
111102

112103
```
113-
./gradlew tests:dat:docker:nodejs10docker:distDocker
114104
./gradlew tests:dat:docker:nodejs12docker:distDocker
115105
./gradlew tests:dat:docker:nodejs14docker:distDocker
116106
```

core/nodejs10Action/.dockerignore

Lines changed: 0 additions & 13 deletions
This file was deleted.

core/nodejs10Action/CHANGELOG.md

Lines changed: 0 additions & 61 deletions
This file was deleted.

core/nodejs10Action/Dockerfile

Lines changed: 0 additions & 45 deletions
This file was deleted.

core/nodejs10Action/build.gradle

Lines changed: 0 additions & 86 deletions
This file was deleted.

core/nodejs10Action/knative/Dockerfile

Lines changed: 0 additions & 38 deletions
This file was deleted.

settings.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,9 @@
1818
include 'tests'
1919

2020
include 'core:nodejsActionBase'
21-
include 'core:nodejs10Action'
2221
include 'core:nodejs12Action'
2322
include 'core:nodejs14Action'
2423
include 'core:typescript37Action'
25-
include 'tests:dat:docker:nodejs10docker'
2624
include 'tests:dat:docker:nodejs12docker'
2725
include 'tests:dat:docker:nodejs14docker'
2826
include 'tests:dat:docker:typescript37docker'

tests/dat/docker/nodejs10docker/Dockerfile

Lines changed: 0 additions & 19 deletions
This file was deleted.

tests/dat/docker/nodejs10docker/build.gradle

Lines changed: 0 additions & 19 deletions
This file was deleted.

0 commit comments

Comments
 (0)