Try mostly static Windows build #22486
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: Push | |
on: | |
push: | |
paths-ignore: | |
- docs/** | |
- NEWS | |
- UPGRADING | |
- UPGRADING.INTERNALS | |
- '**/README.*' | |
- CONTRIBUTING.md | |
- CODING_STANDARDS.md | |
- .cirrus.yml | |
- .circleci/** | |
branches: | |
- PHP-8.1 | |
- PHP-8.2 | |
- PHP-8.3 | |
- PHP-8.4 | |
- master | |
pull_request: | |
paths-ignore: | |
- docs/** | |
- NEWS | |
- UPGRADING | |
- UPGRADING.INTERNALS | |
- '**/README.*' | |
- CONTRIBUTING.md | |
- CODING_STANDARDS.md | |
- .cirrus.yml | |
- .circleci/** | |
branches: | |
- '**' | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.url || github.run_id }} | |
cancel-in-progress: true | |
env: | |
CC: ccache gcc | |
CXX: ccache g++ | |
jobs: | |
WINDOWS: | |
if: github.repository == 'php/php-src' || github.event_name == 'pull_request' | |
name: WINDOWS_X64_ZTS | |
runs-on: windows-2022 | |
timeout-minutes: 50 | |
env: | |
PHP_BUILD_CACHE_BASE_DIR: C:\build-cache | |
PHP_BUILD_OBJ_DIR: C:\obj | |
PHP_BUILD_CACHE_SDK_DIR: C:\build-cache\sdk | |
PHP_BUILD_SDK_BRANCH: php-sdk-2.3.0 | |
PHP_BUILD_CRT: vs17 | |
PLATFORM: x64 | |
THREAD_SAFE: "1" | |
INTRINSICS: AVX2 | |
PARALLEL: -j2 | |
OPCACHE: "1" | |
steps: | |
- name: git config | |
run: git config --global core.autocrlf false && git config --global core.eol lf | |
- name: git checkout | |
uses: actions/checkout@v4 | |
- name: Setup | |
uses: ./.github/actions/setup-windows | |
- name: Build | |
run: .github/scripts/windows/build.bat | |
- name: Test | |
run: .github/scripts/windows/test.bat |