Fix Sync
object debug handlers
#59
Workflow file for this run
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: Linux | |
on: [push, pull_request] | |
env: | |
NODE_COVERALLS_DEBUG: true | |
jobs: | |
vanilla: | |
strategy: | |
matrix: | |
version: ["8.0", "8.1", "8.2"] | |
build: ["gcov", "release"] | |
if: success() || failure() | |
runs-on: ubuntu-latest | |
name: Linux, PHP v${{matrix.version}}, ${{matrix.build}} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Test parallel | |
run: docker compose run parallel-${{matrix.build}}-${{matrix.version}} docker/parallel.test | |
- name: Send Coverage | |
if: ${{ matrix.build == 'gcov' }} | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
path-to-lcov: ${{ github.workspace }}/coverage.info | |
flag-name: vanilla-${{matrix.version}} | |
parallel: true | |
opcache: | |
strategy: | |
matrix: | |
version: ["8.0", "8.1", "8.2"] | |
build: ["gcov", "release"] | |
if: success() || failure() | |
runs-on: ubuntu-latest | |
name: Linux, PHP v${{matrix.version}}, ${{matrix.build}}, opcache | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Test parallel | |
run: docker compose run parallel-${{matrix.build}}-${{matrix.version}} docker/parallel.test -d opcache.enable_cli=1 -d opcache.jit=disable | |
- name: Build Coveralls | |
if: ${{ matrix.build == 'gcov' }} | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
path-to-lcov: ${{ github.workspace }}/coverage.info | |
flag-name: opcache-${{matrix.version}} | |
parallel: true | |
jit: | |
strategy: | |
matrix: | |
version: ["8.0", "8.1", "8.2"] | |
build: ["gcov", "release"] | |
if: success() || failure() | |
runs-on: ubuntu-latest | |
name: Linux, PHP v${{matrix.version}}, ${{matrix.build}}, JIT | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Test parallel | |
run: docker compose run parallel-${{matrix.build}}-${{matrix.version}} docker/parallel.test -d opcache.enable_cli=1 -d opcache.jit=function -d opcache.jit_buffer_size=32M | |
- name: Build Coveralls | |
if: ${{ matrix.build == 'gcov' }} | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
path-to-lcov: ${{ github.workspace }}/coverage.info | |
flag-name: jit-${{matrix.version}} | |
parallel: true | |
finish: | |
if: always() | |
runs-on: ubuntu-latest | |
needs: [vanilla, opcache, jit] | |
steps: | |
- name: Finish Coveralls | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.github_token }} | |
parallel-finished: true |