Skip to content

Fix centos and ubuntu integ tests #111

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 21, 2024
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
Loading