1
0
mirror of https://github.com/php/php-src.git synced 2026-03-31 12:42:29 +02:00

Move Opcache variation job to GitHub actions

Closes GH-9606
This commit is contained in:
Ilija Tovilo
2022-09-23 20:45:57 +02:00
parent e488f7b0eb
commit 1bef2e5108
3 changed files with 71 additions and 68 deletions

View File

@@ -189,3 +189,74 @@ jobs:
- name: Upload Test Coverage to Codecov.io
if: always()
run: bash <(curl -s https://codecov.io/bash)
OPCACHE_VARIATION:
needs: GENERATE_MATRIX
if: ${{ needs.GENERATE_MATRIX.outputs.branches != '[]' }}
strategy:
fail-fast: false
matrix:
branch: ${{ fromJson(needs.GENERATE_MATRIX.outputs.branches) }}
name: "${{ matrix.branch.name }}_OPCACHE_VARIATION"
runs-on: ubuntu-20.04
steps:
- name: git checkout
uses: actions/checkout@v2
with:
ref: ${{ matrix.branch.ref }}
- name: Create MSSQL container
uses: ./.github/actions/setup-mssql
- name: Create Oracle container
uses: ./.github/actions/setup-oracle
- name: apt
uses: ./.github/actions/apt-x64
- name: ./configure
uses: ./.github/actions/configure-x64
with:
configurationParameters: >-
--enable-debug --disable-zts
- name: make
run: make -j$(/usr/bin/nproc) >/dev/null
- name: make install
uses: ./.github/actions/install-linux
- name: Setup
uses: ./.github/actions/setup-x64
- name: Test File Cache (prime shm)
uses: ./.github/actions/test-linux
with:
runTestsParameters: >-
-d zend_extension=opcache.so
-d opcache.enable_cli=1
--file-cache-prime
- name: Test File Cache (prime shm, use shm)
uses: ./.github/actions/test-linux
with:
runTestsParameters: >-
-d zend_extension=opcache.so
-d opcache.enable_cli=1
--file-cache-use
- name: Test File Cache (prime shm, use file)
uses: ./.github/actions/test-linux
with:
runTestsParameters: >-
-d zend_extension=opcache.so
-d opcache.enable_cli=1
--file-cache-use
-d opcache.file_cache_only=1
- name: Test File Cache Only (prime)
uses: ./.github/actions/test-linux
with:
runTestsParameters: >-
-d zend_extension=opcache.so
-d opcache.enable_cli=1
--file-cache-prime
-d opcache.file_cache_only=1
- name: Test File Cache Only (use)
uses: ./.github/actions/test-linux
with:
runTestsParameters: >-
-d zend_extension=opcache.so
-d opcache.enable_cli=1
--file-cache-use
-d opcache.file_cache_only=1
- name: Verify generated files are up to date
uses: ./.github/actions/verify-generated-files

View File

@@ -55,8 +55,3 @@ jobs:
CFLAGS='-fsanitize=undefined,address -fno-sanitize-recover -DZEND_TRACK_ARENA_ALLOC'
LDFLAGS='-fsanitize=undefined,address'
timeoutInMinutes: 90
- template: azure/file_cache_job.yml
parameters:
configurationName: DEBUG_NTS_FILE_CACHE
configurationParameters: '--enable-debug --disable-zts'
timeoutInMinutes: 90

View File

@@ -1,63 +0,0 @@
parameters:
configurationName: ''
configurationParameters: ''
runTestsParameters: ''
timeoutInMinutes: 60
jobs:
- job: ${{ parameters.configurationName }}
timeoutInMinutes: ${{ parameters.timeoutInMinutes }}
pool:
vmImage: 'ubuntu-20.04'
steps:
- template: apt.yml
- template: configure.yml
parameters:
configurationParameters: ${{ parameters.configurationParameters }}
- script: make -j$(/usr/bin/nproc) >/dev/null
displayName: 'Make Build'
- template: install.yml
- template: setup.yml
- template: test.yml
parameters:
configurationName: ${{ parameters.configurationName }}
runTestsName: 'File Cache (prime shm)'
runTestsParameters: >-
${{ parameters.runTestsParameters }}
-d zend_extension=opcache.so
--file-cache-prime
- template: test.yml
parameters:
configurationName: ${{ parameters.configurationName }}
runTestsName: 'File Cache (prime shm, use shm)'
runTestsParameters: >-
${{ parameters.runTestsParameters }}
-d zend_extension=opcache.so
--file-cache-use
- template: test.yml
parameters:
configurationName: ${{ parameters.configurationName }}
runTestsName: 'File Cache (prime shm, use file)'
runTestsParameters: >-
${{ parameters.runTestsParameters }}
-d zend_extension=opcache.so
--file-cache-use
-d opcache.file_cache_only=1
- template: test.yml
parameters:
configurationName: ${{ parameters.configurationName }}
runTestsName: 'File Cache Only (prime)'
runTestsParameters: >-
${{ parameters.runTestsParameters }}
-d zend_extension=opcache.so
--file-cache-prime
-d opcache.file_cache_only=1
- template: test.yml
parameters:
configurationName: ${{ parameters.configurationName }}
runTestsName: 'File Cache Only (use)'
runTestsParameters: >-
${{ parameters.runTestsParameters }}
-d zend_extension=opcache.so
--file-cache-use
-d opcache.file_cache_only=1