Skip to content

Commit

Permalink
ci: update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
amaanq committed May 4, 2024
1 parent 93346d6 commit 24e8ce2
Show file tree
Hide file tree
Showing 7 changed files with 102 additions and 183 deletions.
8 changes: 0 additions & 8 deletions .github/pull_request_template.md

This file was deleted.

71 changes: 49 additions & 22 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,36 +2,63 @@ name: CI

on:
push:
branches:
- master
branches: [master]
paths:
- "scripts.js"
- "common/*"
- "*/grammar.js"
- "*/src/**"
- "bindings/**"
- "binding.gyp"
pull_request:
branches:
- master
paths:
- "scripts.js"
- "common/*"
- "*/grammar.js"
- "*/src/**"
- "bindings/**"
- "binding.gyp"

concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true

jobs:
test:
runs-on: ${{ matrix.os }}
name: Test parsers
runs-on: ${{matrix.os}}
strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest]
os: [ubuntu-latest, windows-latest, macos-14]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up tree-sitter
uses: tree-sitter/setup-action/cli@v1
- name: Set up examples
run: |-
git clone https://github.com/laravel/laravel examples/laravel --single-branch --depth=1 --filter=blob:none
git clone https://github.com/laravel/framework examples/framework --single-branch --depth=1 --filter=blob:none
git clone https://github.com/phacility/phabricator examples/phabricator --single-branch --depth=1 --filter=blob:none
git clone https://github.com/sebastianbergmann/phpunit examples/phpunit --single-branch --depth=1 --filter=blob:none
git clone https://github.com/WordPress/WordPress examples/WordPress --single-branch --depth=1 --filter=blob:none
git clone https://github.com/wikimedia/mediawiki examples/mediawiki --single-branch --depth=1 --filter=blob:none
- name: Run tests
uses: tree-sitter/parser-test-action@v2
with:
node-version: 18
- uses: actions/setup-python@v4
test-rust: ${{runner.os == 'Linux'}}
- name: Parse examples
id: test
uses: tree-sitter/parse-action@v4
continue-on-error: true
with:
python-version: '3.12'
- run: npm install
- run: npm test
- run: npm run test-examples
test_windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
files: |
examples/**/*.php
invalid-files: |
examples/framework/tests/Foundation/fixtures/bad-syntax-strategy.php
- uses: actions/upload-artifact@v4
if: steps.test.outputs.failures != ''
with:
node-version: 18
- run: npm install
- run: npm test
name: failures-${{matrix.os}}
path: ${{steps.test.outputs.failures}}
30 changes: 30 additions & 0 deletions .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Fuzz Parser

on:
push:
branches: [master]
paths:
- php/src/scanner.c
- php_only/src/scanner.c
- common/scanner.h
pull_request:
paths:
- php/src/scanner.c
- php_only/src/scanner.c
- common/scanner.h

jobs:
fuzz:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language: [php, php_only]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Fuzz ${{matrix.language}} parser
uses: tree-sitter/fuzz-action@v4
with:
directory: ${{matrix.language}}
tree-sitter-version: v0.22.5
23 changes: 23 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Publish package

on:
push:
tags: ["*"]

concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true

jobs:
npm:
uses: tree-sitter/workflows/.github/workflows/package-npm.yml@main
secrets:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
crates:
uses: tree-sitter/workflows/.github/workflows/package-crates.yml@main
secrets:
CARGO_REGISTRY_TOKEN: ${{secrets.CARGO_REGISTRY_TOKEN}}
pypi:
uses: tree-sitter/workflows/.github/workflows/package-pypi.yml@main
secrets:
PYPI_API_TOKEN: ${{secrets.PYPI_API_TOKEN}}
103 changes: 0 additions & 103 deletions .github/workflows/release.yml

This file was deleted.

1 change: 0 additions & 1 deletion script/known-failures.txt

This file was deleted.

49 changes: 0 additions & 49 deletions script/parse-examples

This file was deleted.

0 comments on commit 24e8ce2

Please sign in to comment.