feat: bump openssl to 3.4.0 #32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: nginx-more | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- '*' | |
jobs: | |
sonarqube: | |
name: SonarQube analysis | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checking out repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: SonarQube scan | |
uses: sonarsource/sonarqube-scan-action@master | |
env: | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} | |
with: | |
args: > | |
-Dproject.settings=.sonar-project.properties | |
buildrpm: | |
name: Build el${{ matrix.VERSION }} package | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
env: | |
PKG_NAME: nginx-more | |
strategy: | |
matrix: | |
include: | |
# - VERSION: 6 | |
# OS: karljohns0n/centos | |
# PKG_ARCH: x86_64 | |
# OPT: --with=pagespeed | |
- VERSION: 7 | |
OS: karljohns0n/centos | |
PKG_ARCH: x86_64 | |
OPT: --with=modsecurity --with=pagespeed | |
- VERSION: 8 | |
OS: rockylinux | |
PKG_ARCH: x86_64 | |
OPT: --with=modsecurity --with=pagespeed | |
- VERSION: 9 | |
OS: rockylinux | |
PKG_ARCH: x86_64 | |
OPT: --with=modsecurity | |
steps: | |
- name: Checking out repo | |
uses: actions/checkout@v3 | |
- name: Build el${{ matrix.VERSION }} package using mock | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: karljohns0n/rpmbuild:9 | |
shell: bash | |
options: -v ${{ github.workspace }}:/tmp/${{ env.PKG_NAME }} -v /sys/fs/cgroup:/sys/fs/cgroup:rw --privileged | |
run: | | |
set -x -e | |
cd tmp/"${{ env.PKG_NAME }}" | |
PKG_VERSION=$(grep "Version:" SPECS/${{ env.PKG_NAME }}.spec|awk '{print $2}' ) | |
PKG_RELEASE=$(grep "Release:" SPECS/${{ env.PKG_NAME }}.spec|awk '{print $2}'| tr -d "%{?dist}") | |
mkdir -p /tmp/"${{ env.PKG_NAME }}"/{BUILD,RPMS,SPECS,SOURCES,SRPMS} | |
spectool -g /tmp/"${{ env.PKG_NAME }}"/SPECS/"${{ env.PKG_NAME }}".spec -C /tmp/"${{ env.PKG_NAME }}"/SOURCES/ | |
mock --isolation=simple -r aeris-"${{ matrix.VERSION }}"-"${{ matrix.PKG_ARCH }}" --spec=/tmp/"${{ env.PKG_NAME }}"/SPECS/"${{ env.PKG_NAME }}".spec --sources=/tmp/"${{ env.PKG_NAME }}"/SOURCES --resultdir=/tmp/"${{ env.PKG_NAME }}"/SRPMS --buildsrpm ${{ matrix.OPT }} | |
mock --isolation=simple --clean -D "dist .el${{ matrix.VERSION }}" -r aeris-"${{ matrix.VERSION }}"-"${{ matrix.PKG_ARCH }}" --resultdir=/tmp/"${{ env.PKG_NAME }}"/RPMS --rebuild /tmp/"${{ env.PKG_NAME }}"/SRPMS/"${{ env.PKG_NAME }}"-"${PKG_VERSION}"-"${PKG_RELEASE}".el"${{ matrix.VERSION }}".src.rpm ${{ matrix.OPT }} | |
rpm -q -l -p /tmp/"${{ env.PKG_NAME }}"/RPMS/"${{ env.PKG_NAME }}"-"${PKG_VERSION}"-"${PKG_RELEASE}".el"${{ matrix.VERSION }}"."${{ matrix.PKG_ARCH }}".rpm --noartifact | |
- name: Test package on el${{ matrix.VERSION }} | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: ${{ matrix.OS }}:${{ matrix.VERSION }} | |
shell: bash | |
options: -v ${{ github.workspace }}:/tmp/${{ env.PKG_NAME }} -v /sys/fs/cgroup:/sys/fs/cgroup:rw --privileged | |
run: | | |
set -x -e | |
cd tmp/"${{ env.PKG_NAME }}" | |
PKG_VERSION=$(grep "Version:" SPECS/${{ env.PKG_NAME }}.spec|awk '{print $2}' ) | |
PKG_RELEASE=$(grep "Release:" SPECS/${{ env.PKG_NAME }}.spec|awk '{print $2}'| tr -d "%{?dist}") | |
yum clean all | |
bash -c '[[ ! -f /etc/yum.repos.d/aeris.repo ]] && yum -y install https://repo.aerisnetwork.com/pub/aeris-release-$(rpm -E %{rhel}).rpm || echo continue' | |
yum install --enablerepo="aeris,aeris-testing" -y /tmp/"${{ env.PKG_NAME }}"/RPMS/"${{ env.PKG_NAME }}"-"${PKG_VERSION}"-"${PKG_RELEASE}".el"${{ matrix.VERSION }}"."${{ matrix.PKG_ARCH }}".rpm | |
nginx -V | |
/usr/sbin/nginx -t | |
/usr/sbin/nginx && sleep 5 | |
curl -s -I http://127.0.0.1 | |
cat /var/log/nginx/error.log | |
yum remove -y nginx-more |