-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove Node14 from integ tests matrix since it is deprecated (#99)
- Loading branch information
Showing
13 changed files
with
4 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,6 @@ batch: | |
DISTRO_VERSION: | ||
- "3.16" | ||
RUNTIME_VERSION: | ||
- "14" | ||
- "16" | ||
- "18" | ||
phases: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,6 @@ batch: | |
- "stream8" | ||
- "stream9" | ||
RUNTIME_VERSION: | ||
- "14" | ||
- "16" | ||
- "18" | ||
- "20" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,6 @@ batch: | |
- "buster" | ||
- "bullseye" | ||
RUNTIME_VERSION: | ||
- "14" | ||
- "16" | ||
- "18" | ||
- "20" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,6 @@ batch: | |
- "20.04" | ||
- "22.04" | ||
RUNTIME_VERSION: | ||
- "14" | ||
- "16" | ||
phases: | ||
pre_build: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,11 +40,6 @@ RUN mkdir -p ${FUNCTION_DIR} | |
WORKDIR ${FUNCTION_DIR}/deps/aws-lambda-ric | ||
COPY . . | ||
|
||
# Node14 uses [email protected] by default which will downgrade permissions, if it's root, | ||
# before running any build scripts: https://github.com/npm/npm/issues/3497 | ||
# Starting from [email protected], when npm is run as root, | ||
# scripts are always run with the effective uid and gid of the working directory owner. | ||
RUN if [[ $(node -v | cut -c 1-3) == "v14" ]] ; then npm install -g npm@7 ; fi | ||
RUN make build && \ | ||
npm run test:unit | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,8 +51,8 @@ WORKDIR ${FUNCTION_DIR}/deps/aws-lambda-ric | |
COPY . . | ||
|
||
# Node14 uses [email protected] by default which will downgrade permissions, if it's root, | ||
# before running any build scripts: https://github.com/npm/npm/issues/3497 | ||
# Starting from [email protected], when npm is run as root, | ||
# before running any build scripts: https://github.com/npm/npm/issues/3497 | ||
# Starting from [email protected], when npm is run as root, | ||
# scripts are always run with the effective uid and gid of the working directory owner. | ||
RUN if [[ $(node -v | cut -c 1-3) == "v14" ]] ; then npm install -g npm@7 ; fi | ||
RUN make build && \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,11 +40,6 @@ RUN mkdir -p ${FUNCTION_DIR} | |
WORKDIR ${FUNCTION_DIR}/deps/aws-lambda-ric | ||
COPY . . | ||
|
||
# Node14 uses [email protected] by default which will downgrade permissions, if it's root, | ||
# before running any build scripts: https://github.com/npm/npm/issues/3497 | ||
# Starting from [email protected], when npm is run as root, | ||
# scripts are always run with the effective uid and gid of the working directory owner. | ||
RUN if [[ $(node -v | cut -c 1-3) == "v14" ]] ; then npm install -g npm@7 ; fi | ||
RUN make build && \ | ||
npm run test:unit | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,11 +22,6 @@ RUN mkdir -p ${FUNCTION_DIR} | |
WORKDIR ${FUNCTION_DIR}/deps/aws-lambda-ric | ||
COPY . . | ||
|
||
# Node14 uses [email protected] by default which will downgrade permissions, if it's root, | ||
# before running any build scripts: https://github.com/npm/npm/issues/3497 | ||
# Starting from [email protected], when npm is run as root, | ||
# scripts are always run with the effective uid and gid of the working directory owner. | ||
RUN if [ $(node -v | cut -c 1-3) = "v14" ] ; then npm install -g npm@7 ; fi | ||
RUN make build && \ | ||
npm run test:unit | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,11 +48,6 @@ RUN mkdir -p ${FUNCTION_DIR} | |
WORKDIR ${FUNCTION_DIR}/deps/aws-lambda-ric | ||
COPY . . | ||
|
||
# Node14 uses [email protected] by default which will downgrade permissions, if it's root, | ||
# before running any build scripts: https://github.com/npm/npm/issues/3497 | ||
# Starting from [email protected], when npm is run as root, | ||
# scripts are always run with the effective uid and gid of the working directory owner. | ||
RUN if [ $(node -v | cut -c 1-3) = "v14" ] ; then npm install -g npm@7 ; fi | ||
RUN make build && \ | ||
npm run test:unit | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,11 +40,6 @@ RUN mkdir -p ${FUNCTION_DIR} | |
WORKDIR ${FUNCTION_DIR}/deps/aws-lambda-ric | ||
COPY . . | ||
|
||
# Node14 uses [email protected] by default which will downgrade permissions, if it's root, | ||
# before running any build scripts: https://github.com/npm/npm/issues/3497 | ||
# Starting from [email protected], when npm is run as root, | ||
# scripts are always run with the effective uid and gid of the working directory owner. | ||
RUN if [[ $(node -v | cut -c 1-3) == "v14" ]] ; then npm install -g npm@7 ; fi | ||
RUN make build && \ | ||
npm run test:unit | ||
|
||
|