From ebc25204ef85b75a13ffb71dd4a9bb348ecabe8d Mon Sep 17 00:00:00 2001 From: Ilija Tovilo Date: Sat, 4 Mar 2023 14:37:56 +0100 Subject: [PATCH] Test Windows with opcache on GitHub actions Closes GH-10777 --- .github/workflows/push.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 1a8a169114d9a..37d6356c95910 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -159,8 +159,10 @@ jobs: include: - x64: true zts: false + opcache: true - x64: false zts: true + opcache: false name: "WINDOWS_${{ matrix.x64 && 'X64' || 'X86' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}" runs-on: windows-2019 env: @@ -173,6 +175,7 @@ jobs: THREAD_SAFE: "${{ matrix.zts && '1' || '0' }}" INTRINSICS: "${{ matrix.zts && 'AVX2' || '' }}" PARALLEL: -j2 + OPCACHE: "${{ matrix.opcache && '1' || '0' }}" steps: - name: git config run: git config --global core.autocrlf false && git config --global core.eol lf