Skip to content
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

add nginx 1.27.2 to builds #509

Merged
merged 2 commits into from
Jan 8, 2025
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: 1 addition & 1 deletion .github/workflows/nginx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
fail-fast: false
matrix:
image: ["ubuntu:24.04", "debian:11", "alpine:3.20", "amazonlinux:2", "amazonlinux:2023"]
nginx: ["1.27.3", "1.27.1", "1.26.2", "1.24.0", "1.22.1"]
nginx: ["1.27.3", "1.27.2", "1.27.1", "1.26.2", "1.24.0", "1.22.1"]
steps:
- name: checkout otel nginx
uses: actions/checkout@v4
Expand Down
3 changes: 1 addition & 2 deletions instrumentation/nginx/test/Dockerfile_amazonlinux
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ FROM $image AS build
ARG otel_cpp_version=1.17.0
ARG nginx_version=1.27.3

RUN yum check-update && \
yum install -y git gcc-c++ make tar curl-devel unzip zlib-devel pcre2-devel
RUN yum install -y git gcc-c++ make tar curl-devel unzip zlib-devel pcre2-devel

RUN curl -LO https://github.com/Kitware/CMake/releases/download/v3.31.1/cmake-3.31.1-linux-x86_64.tar.gz && tar xf cmake-3.31.1-linux-x86_64.tar.gz && mv cmake-3.31.1-linux-x86_64 cmake

Expand Down