Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions test/integration/codebuild/buildspec.os.centos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,8 @@ batch:
env:
variables:
DISTRO_VERSION:
- "stream8"
- "stream9"
RUNTIME_VERSION:
- "16"
- "18"
- "20"
phases:
Expand Down
2 changes: 1 addition & 1 deletion test/integration/docker/Dockerfile.echo.centos
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ FROM quay.io/centos/centos:${DISTRO_VERSION} AS node-centos
# Include global arg in this stage of the build
ARG RUNTIME_VERSION
# Install NodeJS
RUN curl -sL https://rpm.nodesource.com/setup_${RUNTIME_VERSION}.x | bash - && \
RUN yum module enable -y nodejs:${RUNTIME_VERSION} && \
yum install -y nodejs


Expand Down
3 changes: 2 additions & 1 deletion test/integration/docker/Dockerfile.echo.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ RUN apt-get update && \
automake \
libtool \
wget \
libcurl4-openssl-dev
libcurl4-openssl-dev \
python3
# Install a modern CMake
RUN wget --quiet -O cmake-install https://github.com/Kitware/CMake/releases/download/v3.20.0/cmake-3.20.0-linux-${ARCHITECTURE}.sh && \
sh cmake-install --skip-license --prefix=/usr --exclude-subdirectory;
Expand Down