Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: zephir-lang/php-zephir-parser
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: development
Choose a base ref
...
head repository: zephir-lang/php-zephir-parser
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: pecl
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.
  • 5 commits
  • 2 files changed
  • 1 contributor

Commits on Feb 28, 2020

  1. Setup PECL

    ruudboon committed Feb 28, 2020
    Copy the full SHA
    c11af21 View commit details
  2. Added pecl

    ruudboon committed Feb 28, 2020
    Copy the full SHA
    1c2f8db View commit details
  3. Clone repo

    ruudboon committed Feb 28, 2020
    Copy the full SHA
    6e4788b View commit details
  4. Remove generated files

    ruudboon committed Feb 28, 2020
    Copy the full SHA
    c04da13 View commit details
  5. Remove generated files

    ruudboon committed Feb 28, 2020
    Copy the full SHA
    3676166 View commit details
Showing with 97 additions and 0 deletions.
  1. +35 −0 .github/workflows/main.yml
  2. +62 −0 package.xml
35 changes: 35 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -124,3 +124,38 @@ jobs:
file: ./lcov.info
flags: unittests
fail_ci_if_error: false

pecl:
runs-on: ubuntu-latest
name: Create pecl package and compile
steps:
- uses: actions/checkout@v2-beta
with:
fetch-depth: 1

- name: Install PHP 7.4
uses: shivammathur/setup-php@v1
with:
php-version: '7.4'
coverage: none
tools: pecl

- name: Create pecl package
id: pecl_create
run: |
pecl package
zephir_package="`ls | grep zephir_parser-*tgz`"
mv $zephir_package zephir-parser-pecl.tgz
- name: Validate pecl package
run: pecl package-validate zephir-parser-pecl.tgz

- uses: actions/upload-artifact@v1
with:
name: 'zephir-parser-pecl'
path: zephir-parser-pecl.tgz

- name: Install package
run: |
export MAKEFLAGS="-j$(getconf _NPROCESSORS_ONLN)"
sudo pecl -v install zephir-parser-pecl.tgz
62 changes: 62 additions & 0 deletions package.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
<?xml version="1.0" encoding="UTF-8"?>
<package packagerversion="1.10.5" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd">
<name>zephir_parser</name>
<channel>pecl.php.net</channel>
<summary>The Zephir Parser delivered as a C extension for the PHP language.</summary>
<description>
Zephir is an open source, high-level/domain specific language designed to ease the creation and maintainability of extensions for PHP, with a focus on type and memory safety.
</description>
<lead>
<name>Ruud Boon</name>
<user>ruudboon</user>
<email>ruud@ruudboon.io</email>
<active>yes</active>
</lead>
<date>2019-12-10</date>
<time>18:00:00</time>
<version>
<release>1.3.3</release>
<api>1.3.3</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://github.com/phalcon/php-zephir-parser/blob/development/LICENSE">MIT License</license>
<notes>
Full changelog can be found at: https://github.com/phalcon/php-zephir-parser/blob/master/CHANGELOG.md

# [1.1.3]
## Added
- Added PHP 7.4 support
</notes>
<contents>
<dir name="/">
<file name="config.w32" role="src" />
<file name="config.m4" role="src" />
<file name="parser.mk" role="src" />
<file name="parser/parser.h" role="src" />
<file name="parser/scanner.h" role="src" />
<file name="parser/xx.h" role="src" />
<file name="zephir_parser.c" role="src" />
<file name="zephir_parser.h" role="src" />
<file name="LICENSE" role="doc" />
<file name="CHANGELOG.md" role="doc" />
<file name="CODE_OF_CONDUCT.md" role="doc" />
<file name="CREDITS" role="doc" />
</dir>
</contents>
<dependencies>
<required>
<php>
<min>7.0.0</min>
<max>8.0.0</max>
</php>
<pearinstaller>
<min>1.4.0</min>
</pearinstaller>
</required>
</dependencies>
<providesextension>zephir_parser</providesextension>
<extsrcrelease/>
</package>