Skip to content

Commit

Permalink
Fix centos and ubuntu integ tests
Browse files Browse the repository at this point in the history
  • Loading branch information
andclt committed Jun 21, 2024
1 parent 33cfa94 commit 094c366
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
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

0 comments on commit 094c366

Please sign in to comment.