Skip to content

Commit

Permalink
try windows releases
Browse files Browse the repository at this point in the history
  • Loading branch information
realFlowControl committed Dec 13, 2024
1 parent 742fbaf commit d3b7f82
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/windows-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Publish Windows Releases
on:
pull_request: null
release:
types: [published]

permissions:
contents: write

jobs:
get-extension-matrix:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.extension-matrix.outputs.matrix }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Get the extension matrix
id: extension-matrix
uses: php/php-windows-builder/extension-matrix@v1
with:
php-version-list: '8.0, 8.1, 8.2, 8.3, 8.4'
arch-list: 'x64, x86'
ts-list: 'ts'
build:
needs: get-extension-matrix
runs-on: ${{ matrix.os }}
strategy:
matrix: ${{fromJson(needs.get-extension-matrix.outputs.matrix)}}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Fetch dependencies
run: |
curl -LO https://downloads.php.net/~windows/pecl/deps/pthreads-3.0.0-vs16-${{matrix.arch}}.zip
7z x pthreads-3.0.0-vs16-${{matrix.arch}}.zip -- -o..\deps
- name: Build the extension
uses: php/php-windows-builder/extension@v1
with:
php-version: ${{ matrix.php-version }}
arch: ${{ matrix.arch }}
ts: ${{ matrix.ts }}
args: --enable-parallel

0 comments on commit d3b7f82

Please sign in to comment.