This repository was archived by the owner on Oct 27, 2025. It is now read-only.
  
  
  
  
docs: update README to reflect project maintenance status #116
  
    
      This file contains hidden or 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: Build Windows | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| tests-windows: | |
| name: Tests | |
| runs-on: windows-latest | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| php: | |
| - '8.1' | |
| - '8.2' | |
| - '8.3' | |
| - '8.4' | |
| librdkafka: | |
| - '2.8.0' | |
| defaults: | |
| run: | |
| shell: bash | |
| env: | |
| PHP_VERSION: ${{ matrix.php }} | |
| LIBRDKAFKA_VERSION: v${{ matrix.librdkafka }} | |
| KAFKA_BROKERS: localhost:9092 | |
| COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH }} | |
| GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
| KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://localhost:9092 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install librdkafka & kafka | |
| run: | | |
| nuget install librdkafka.redist -Version ${{ matrix.librdkafka }} | |
| choco install --no-progress wget nssm | |
| wget -q -O kafka_2.13-3.8.0.tgz http://ftp.fau.de/apache/kafka/3.8.0/kafka_2.13-3.8.0.tgz | |
| tar -xzf kafka_2.13-3.8.0.tgz | |
| cp -pr kafka_2.13-3.8.0 /c/kafka | |
| sed -i "s|broker.id=0|broker.id=111|g" /c/kafka/config/server.properties | |
| nssm install zookeeper /c/kafka/bin/windows/zookeeper-server-start.bat /c/kafka/config/zookeeper.properties | |
| nssm set zookeeper AppExit Default Exit | |
| nssm install kafka /c/kafka/bin/windows/kafka-server-start.bat /c/kafka/config/server.properties | |
| nssm set kafka AppExit Default Exit | |
| - name: Start Kafka | |
| run: | | |
| nssm start zookeeper | |
| nssm status zookeeper | |
| nssm start kafka | |
| nssm status kafka | |
| - name: Install PHP ${{ matrix.php }} | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| coverage: none | |
| extensions: ffi | |
| - name: Install dependencies | |
| uses: ramsey/composer-install@v2 | |
| with: | |
| composer-options: "--prefer-dist --prefer-stable" | |
| - name: Run tests | |
| run: | | |
| export PATH=$PWD/librdkafka.redist.${{ matrix.librdkafka }}/runtimes/win-x64/native:$PATH | |
| composer test-init | |
| vendor/bin/phpunit --debug; | |
| - name: Stop kafka | |
| run: | | |
| nssm stop kafka | |
| nssm stop zookeeper |