Skip to content

Commit 972bb4e

Browse files
authored
COMMUNITY-86 | Backport COMMUNITY-79 and COMMUNITY-80 to release/connector/1.3.0 (#191)
* COMMUNITY-86: backport COMMUNITY-79 back to release/connector/1.3.0 * COMMUNITY-86: backport COMMUNITY-80 back to release/connector/1.3.0 * COMMUNITY-86: update submodule
1 parent f19ec97 commit 972bb4e

9 files changed

Lines changed: 196 additions & 342 deletions

File tree

.github/workflows/build.yaml

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

.github/workflows/build_doc.yaml

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

.github/workflows/prhandler.yaml

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

ci_config.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
node_versions:
2+
- "18"
3+
- "19"
4+
- "20"
5+
- "lts"
6+
publish_version: "20"

resources/docker/Dockerfile

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,20 @@ ARG NODE_VERSION
1313
FROM node:${NODE_VERSION}
1414

1515
RUN apt-get update \
16-
&& apt-get install -y gcc g++ git make python3 python3-pip python3-venv \
16+
&& apt-get install -y gcc g++ git jq make python3 python3-pip python3-venv \
1717
&& useradd -u 789 -m jenkins
1818

1919
RUN mkdir -p /opt/node_deps \
2020
&& npm config set prefix '/opt/node_deps' \
2121
&& chmod -R a+rwx /opt/node_deps
2222

2323
RUN python3 -m venv /opt/venv \
24-
&& chmod -R o+rwx /opt/venv
24+
&& chmod -R o+rwx /opt/venv
25+
26+
RUN mkdir -p /tmp/awscli/ \
27+
&& curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "/tmp/awscli/awscliv2.zip" \
28+
&& unzip /tmp/awscli/awscliv2.zip -d /tmp/awscli \
29+
&& /tmp/awscli/aws/install \
30+
&& rm -rf /tmp/awscli
2531

2632
ENV PATH="/opt/node_deps/bin:/opt/venv/bin:/home/jenkins/npm/bin:/home/jenkins/.local/bin:${PATH}"

0 commit comments

Comments
 (0)