Skip to content

try to figure out dns issue in CI #15

try to figure out dns issue in CI

try to figure out dns issue in CI #15

Workflow file for this run

name: Passenger CI tests
env:
DEFAULT_RUBY_VERSION: 3.1.6
COMPILE_CONCURRENCY: 4
on:
push:
branches: [ 'stable-*', 'feature/*' ]
pull_request:
branches: [ 'stable-*', 'feature/*' ]
jobs:
cxx:
name: "C++ unit tests on ${{ matrix.os }}, as ${{ matrix.user.name }}"
strategy:
fail-fast: false
matrix:
user:
- name: 'root'
isRoot: '1'
- name: 'normal-user'
isRoot: '0'
os:
- macos-latest
- ubuntu-latest
runs-on: ${{ matrix.os }}
env:
SUDO: ${{ matrix.user.isRoot }}
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.DEFAULT_RUBY_VERSION }}
bundler-cache: true
- run: ./dev/ci/setup-host cxx
- run: ./dev/ci/run-tests-with-docker cxx
if: matrix.os == 'ubuntu-latest'
- run: ./dev/ci/run-tests-natively cxx
if: matrix.os == 'macos-latest'
- run: ls -R buildout
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}-${{ matrix.user.name }}
path: |
'buildout/testlogs'
'buildout/CXX_*/**'
integration:
name: '${{ matrix.integration.name }} integration tests on ${{ matrix.os }}'
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
integration:
- name: 'Apache 2'
label: 'apache2'
dir: 'APACHE2'
- name: 'Nginx dynamic module'
label: 'nginx-dynamic'
dir: 'NGINX_DYNAMIC'
- name: 'Nginx'
label: 'nginx'
dir: 'NGINX'
- name: 'Standalone'
label: 'standalone'
dir: 'STANDALONE'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.DEFAULT_RUBY_VERSION }}
bundler-cache: true
- run: ./dev/ci/setup-host ${{ matrix.integration.label }}
- run: dscacheutil -q host -a name 127.0.0.1
if: matrix.os == 'macos-latest'
- run: ./dev/ci/run-tests-with-docker ${{ matrix.integration.label }}
if: matrix.os == 'ubuntu-latest'
- run: ./dev/ci/run-tests-natively ${{ matrix.integration.label }}
if: matrix.os == 'macos-latest'
- run: ls -R buildout
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}
path: |
'buildout/testlogs'
'buildout/${{ matrix.integration.dir }}_*/**'
language:
name: '${{ matrix.lang.name }} unit tests on ${{ matrix.os }}'
strategy:
fail-fast: false
matrix:
lang:
- name: 'Node.js'
label: 'nodejs'
dir: 'NODEJS'
- name: 'Ruby'
label: 'ruby'
dir: 'RUBY'
os:
- macos-latest
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.DEFAULT_RUBY_VERSION }}
bundler-cache: true
- run: ./dev/ci/setup-host ${{ matrix.lang.label }}
- run: ./dev/ci/run-tests-with-docker ${{ matrix.lang.label }}
if: matrix.os == 'ubuntu-latest'
- run: ./dev/ci/run-tests-natively ${{ matrix.lang.label }}
if: matrix.os == 'macos-latest'
- run: ls -R buildout
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}
path: |
'buildout/testlogs'
'buildout/${{ matrix.lang.dir }}_*/**'
homebrew_packaging:
name: 'Homebrew packaging unit tests'
runs-on: macos-latest
env:
GEM_HOME: ${{ github.workspace }}/.gem
steps:
- uses: actions/checkout@v4
with:
submodules: true
- run: ./dev/ci/setup-host homebrew-packaging
- run: ./dev/ci/run-tests-natively homebrew-packaging
- run: ls -R buildout
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}
path: |
'buildout/testlogs'
'buildout/HOMEBREW_PACKAGING*/**'
source_packaging:
name: 'Source packaging unit tests'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.DEFAULT_RUBY_VERSION }}
bundler-cache: true
- run: ./dev/ci/setup-host source-packaging
- run: ./dev/ci/run-tests-with-docker source-packaging
- run: ls -R buildout
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}
path: |
'buildout/testlogs'
'buildout/SOURCE_PACKAGING*/**'