Compare commits
No commits in common. "main" and "1.0.0" have entirely different histories.
76
.github/CODE_OF_CONDUCT.md
vendored
76
.github/CODE_OF_CONDUCT.md
vendored
@ -1,76 +0,0 @@
|
|||||||
# Contributor Covenant Code of Conduct
|
|
||||||
|
|
||||||
## Our Pledge
|
|
||||||
|
|
||||||
In the interest of fostering an open and welcoming environment, we as
|
|
||||||
contributors and maintainers pledge to making participation in our project and
|
|
||||||
our community a harassment-free experience for everyone, regardless of age, body
|
|
||||||
size, disability, ethnicity, sex characteristics, gender identity and expression,
|
|
||||||
level of experience, education, socio-economic status, nationality, personal
|
|
||||||
appearance, race, religion, or sexual identity and orientation.
|
|
||||||
|
|
||||||
## Our Standards
|
|
||||||
|
|
||||||
Examples of behavior that contributes to creating a positive environment
|
|
||||||
include:
|
|
||||||
|
|
||||||
* Using welcoming and inclusive language
|
|
||||||
* Being respectful of differing viewpoints and experiences
|
|
||||||
* Gracefully accepting constructive criticism
|
|
||||||
* Focusing on what is best for the community
|
|
||||||
* Showing empathy towards other community members
|
|
||||||
|
|
||||||
Examples of unacceptable behavior by participants include:
|
|
||||||
|
|
||||||
* The use of sexualized language or imagery and unwelcome sexual attention or
|
|
||||||
advances
|
|
||||||
* Trolling, insulting/derogatory comments, and personal or political attacks
|
|
||||||
* Public or private harassment
|
|
||||||
* Publishing others' private information, such as a physical or electronic
|
|
||||||
address, without explicit permission
|
|
||||||
* Other conduct which could reasonably be considered inappropriate in a
|
|
||||||
professional setting
|
|
||||||
|
|
||||||
## Our Responsibilities
|
|
||||||
|
|
||||||
Project maintainers are responsible for clarifying the standards of acceptable
|
|
||||||
behavior and are expected to take appropriate and fair corrective action in
|
|
||||||
response to any instances of unacceptable behavior.
|
|
||||||
|
|
||||||
Project maintainers have the right and responsibility to remove, edit, or
|
|
||||||
reject comments, commits, code, wiki edits, issues, and other contributions
|
|
||||||
that are not aligned to this Code of Conduct, or to ban temporarily or
|
|
||||||
permanently any contributor for other behaviors that they deem inappropriate,
|
|
||||||
threatening, offensive, or harmful.
|
|
||||||
|
|
||||||
## Scope
|
|
||||||
|
|
||||||
This Code of Conduct applies both within project spaces and in public spaces
|
|
||||||
when an individual is representing the project or its community. Examples of
|
|
||||||
representing a project or community include using an official project e-mail
|
|
||||||
address, posting via an official social media account, or acting as an appointed
|
|
||||||
representative at an online or offline event. Representation of a project may be
|
|
||||||
further defined and clarified by project maintainers.
|
|
||||||
|
|
||||||
## Enforcement
|
|
||||||
|
|
||||||
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
||||||
reported by contacting the project team at contact@shivammathur.com. All
|
|
||||||
complaints will be reviewed and investigated and will result in a response that
|
|
||||||
is deemed necessary and appropriate to the circumstances. The project team is
|
|
||||||
obligated to maintain confidentiality with regard to the reporter of an incident.
|
|
||||||
Further details of specific enforcement policies may be posted separately.
|
|
||||||
|
|
||||||
Project maintainers who do not follow or enforce the Code of Conduct in good
|
|
||||||
faith may face temporary or permanent repercussions as determined by other
|
|
||||||
members of the project's leadership.
|
|
||||||
|
|
||||||
## Attribution
|
|
||||||
|
|
||||||
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
|
||||||
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
|
|
||||||
|
|
||||||
[homepage]: https://www.contributor-covenant.org
|
|
||||||
|
|
||||||
For answers to common questions about this code of conduct, see
|
|
||||||
https://www.contributor-covenant.org/faq
|
|
||||||
83
.github/CONTRIBUTING.md
vendored
83
.github/CONTRIBUTING.md
vendored
@ -1,83 +0,0 @@
|
|||||||
# Contributing to setup-php
|
|
||||||
|
|
||||||
## Welcome!
|
|
||||||
|
|
||||||
We look forward to your contributions! Here are some examples how you can contribute:
|
|
||||||
|
|
||||||
* [Ask any questions you may have](https://github.com/shivammathur/setup-php/discussions/new?category=Q-A-Help)
|
|
||||||
* [Report a bug](https://github.com/shivammathur/setup-php/issues/new?labels=type/bug&template=bug.md)
|
|
||||||
* [Propose a new feature](https://github.com/shivammathur/setup-php/issues/new?labels=enhancement&template=feature.md)
|
|
||||||
* [Send a pull request](https://github.com/shivammathur/setup-php/pulls)
|
|
||||||
|
|
||||||
## Contributor Code of Conduct
|
|
||||||
|
|
||||||
Please note that this project is released with a [Contributor Code of Conduct](CODE_OF_CONDUCT.md). By participating in this project you agree to abide by its terms.
|
|
||||||
|
|
||||||
## Getting Started
|
|
||||||
|
|
||||||
To get started fork `setup-php` and clone it using git:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
git clone https://github.com/<your-username>/setup-php.git
|
|
||||||
|
|
||||||
cd setup-php
|
|
||||||
```
|
|
||||||
|
|
||||||
If you are using `Windows` configure `git` to handle line endings.
|
|
||||||
|
|
||||||
```cmd
|
|
||||||
git config --local core.autocrlf true
|
|
||||||
```
|
|
||||||
|
|
||||||
Install `setup-php` dependencies using [npm](https://www.npmjs.com/):
|
|
||||||
|
|
||||||
```bash
|
|
||||||
npm install
|
|
||||||
```
|
|
||||||
|
|
||||||
## Workflow to create Pull Requests
|
|
||||||
|
|
||||||
* Fork the `setup-php` project and clone it.
|
|
||||||
* Create a new branch from the develop branch.
|
|
||||||
* Make your bug fix or feature addition.
|
|
||||||
* Add tests for it, so we don't break it in a future version unintentionally.
|
|
||||||
* Ensure the test suite passes and the code complies with our coding guidelines (see below).
|
|
||||||
* Send a pull request to the develop branch with all the details.
|
|
||||||
* If possible, create a GitHub Actions workflow with an integration test for the change in a demo repository and link it in your pull request.
|
|
||||||
|
|
||||||
Please make sure that you have [set up your user name and email address](https://git-scm.com/book/en/v2/Getting-Started-First-Time-Git-Setup) for use with Git. Strings such as `silly nick name <root@localhost>` look really stupid in the commit history of a project.
|
|
||||||
|
|
||||||
Due to time constraints, you may not always get a quick response. Please do not take delays personally and feel free to remind.
|
|
||||||
|
|
||||||
## Coding Guidelines
|
|
||||||
|
|
||||||
This project comes with `.prettierrc.json` and `eslintrc.json` configuration files. Please run the following commands to fix and verify the code quality.
|
|
||||||
|
|
||||||
```bash
|
|
||||||
npm run format
|
|
||||||
npm run lint
|
|
||||||
```
|
|
||||||
|
|
||||||
### Running the test suite
|
|
||||||
|
|
||||||
After following the steps shown above, The `setup-php` tests in the `__tests__` directory can be run using this command:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
npm test
|
|
||||||
```
|
|
||||||
|
|
||||||
### Creating a release
|
|
||||||
|
|
||||||
Creating a release means compiling all the TypeScript code to a single file which `setup-php` can run. Run this, before you push your changes.
|
|
||||||
|
|
||||||
```bash
|
|
||||||
npm run build
|
|
||||||
npm run release
|
|
||||||
```
|
|
||||||
|
|
||||||
### Reporting issues and discussions
|
|
||||||
|
|
||||||
For questions or support, we prefer GitHub Discussions. For any bugs or new features you can create an issue using the appropriate template:
|
|
||||||
|
|
||||||
* [Discussions](https://github.com/shivammathur/setup-php/discussions)
|
|
||||||
* [Issues](https://github.com/shivammathur/setup-php/issues)
|
|
||||||
3
.github/FUNDING.yml
vendored
3
.github/FUNDING.yml
vendored
@ -1,3 +0,0 @@
|
|||||||
# These are supported funding model platforms
|
|
||||||
|
|
||||||
github: shivammathur
|
|
||||||
94
.github/ISSUE_TEMPLATE/bug.yml
vendored
94
.github/ISSUE_TEMPLATE/bug.yml
vendored
@ -1,94 +0,0 @@
|
|||||||
name: Bug report
|
|
||||||
description: Nice, you found a bug!
|
|
||||||
title: "Bug: "
|
|
||||||
labels: ["bug"]
|
|
||||||
assignees: ["shivammathur"]
|
|
||||||
body:
|
|
||||||
- type: markdown
|
|
||||||
attributes:
|
|
||||||
value: "Please fill out the sections below to help us address your issue."
|
|
||||||
|
|
||||||
- type: textarea
|
|
||||||
id: bug-description
|
|
||||||
attributes:
|
|
||||||
label: "Describe the bug"
|
|
||||||
placeholder: "Please describe the bug concisely."
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
|
|
||||||
- type: checkboxes
|
|
||||||
id: version
|
|
||||||
attributes:
|
|
||||||
label: "Version"
|
|
||||||
description: "I have checked releases, and the bug exists in the latest patch version of `v1` or `v2`."
|
|
||||||
options:
|
|
||||||
- label: "v2"
|
|
||||||
- label: "v1"
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
|
|
||||||
- type: dropdown
|
|
||||||
id: runners
|
|
||||||
attributes:
|
|
||||||
label: "Runners"
|
|
||||||
description: "Please choose the GitHub Action runner your workflow uses."
|
|
||||||
options:
|
|
||||||
- "GitHub Hosted"
|
|
||||||
- "Self Hosted"
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
|
|
||||||
- type: textarea
|
|
||||||
id: operating-systems
|
|
||||||
attributes:
|
|
||||||
label: "Operating systems"
|
|
||||||
placeholder: "e.g., Ubuntu 22.04, Windows Server 2022, etc."
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
|
|
||||||
- type: textarea
|
|
||||||
id: php-versions
|
|
||||||
attributes:
|
|
||||||
label: "PHP versions"
|
|
||||||
placeholder: "e.g., PHP 7.4, PHP 8.0, etc."
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
|
|
||||||
- type: textarea
|
|
||||||
id: steps-to-reproduce
|
|
||||||
attributes:
|
|
||||||
label: "To Reproduce"
|
|
||||||
placeholder: "Please provide the relevant steps of your workflow `.yml` file."
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
|
|
||||||
- type: textarea
|
|
||||||
id: expected-behavior
|
|
||||||
attributes:
|
|
||||||
label: "Expected behavior"
|
|
||||||
placeholder: "A clear and concise description of what you expected to happen."
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
|
|
||||||
- type: textarea
|
|
||||||
id: screenshots-logs
|
|
||||||
attributes:
|
|
||||||
label: "Screenshots/Logs"
|
|
||||||
placeholder: "Drag and drop images or paste logs here..."
|
|
||||||
|
|
||||||
- type: textarea
|
|
||||||
id: additional-context
|
|
||||||
attributes:
|
|
||||||
label: "Additional context"
|
|
||||||
placeholder: "Add any other context about the problem here."
|
|
||||||
|
|
||||||
- type: dropdown
|
|
||||||
id: willing-to-submit-pr
|
|
||||||
attributes:
|
|
||||||
label: "Are you willing to submit a PR?"
|
|
||||||
description: "We accept pull requests targeting the develop branch."
|
|
||||||
options:
|
|
||||||
- "Yes"
|
|
||||||
- "No"
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
58
.github/ISSUE_TEMPLATE/feature.yml
vendored
58
.github/ISSUE_TEMPLATE/feature.yml
vendored
@ -1,58 +0,0 @@
|
|||||||
name: Feature request
|
|
||||||
description: Suggest a new feature
|
|
||||||
title: "Feature: "
|
|
||||||
labels: ["enhancement"]
|
|
||||||
assignees: ["shivammathur"]
|
|
||||||
body:
|
|
||||||
- type: markdown
|
|
||||||
attributes:
|
|
||||||
value: "Please fill out the sections below to help us understand your new feature proposal."
|
|
||||||
|
|
||||||
- type: textarea
|
|
||||||
id: feature-description
|
|
||||||
attributes:
|
|
||||||
label: "Describe the feature"
|
|
||||||
placeholder: "A clear and concise description of what you want and why."
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
|
|
||||||
- type: checkboxes
|
|
||||||
id: version-check
|
|
||||||
attributes:
|
|
||||||
label: "Please check the latest release"
|
|
||||||
options:
|
|
||||||
- label: "I have checked releases, and the feature is missing in the latest patch version of `v2`."
|
|
||||||
required: true
|
|
||||||
|
|
||||||
- type: textarea
|
|
||||||
id: underlying-issue
|
|
||||||
attributes:
|
|
||||||
label: "Underlying issue"
|
|
||||||
placeholder: "Please describe the issue this would solve."
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
|
|
||||||
- type: textarea
|
|
||||||
id: alternatives
|
|
||||||
attributes:
|
|
||||||
label: "Describe alternatives"
|
|
||||||
placeholder: "Please mention any alternative solutions you've considered."
|
|
||||||
validations:
|
|
||||||
required: false
|
|
||||||
|
|
||||||
- type: textarea
|
|
||||||
id: additional-context
|
|
||||||
attributes:
|
|
||||||
label: "Additional context"
|
|
||||||
placeholder: "Drag and drop images or paste any additional information here..."
|
|
||||||
|
|
||||||
- type: dropdown
|
|
||||||
id: willing-to-submit-pr
|
|
||||||
attributes:
|
|
||||||
label: "Are you willing to submit a PR?"
|
|
||||||
description: "We accept pull requests targeting the develop branch."
|
|
||||||
options:
|
|
||||||
- "Yes"
|
|
||||||
- "No"
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
37
.github/PULL_REQUEST_TEMPLATE.md
vendored
37
.github/PULL_REQUEST_TEMPLATE.md
vendored
@ -1,37 +0,0 @@
|
|||||||
---
|
|
||||||
name: 🐞 Bug Fix, ⚙ Improvement or 🎉 New Feature
|
|
||||||
about: You found a bug, want to improve something or add a new feature
|
|
||||||
labels: bug or enhancement
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## A Pull Request should be associated with a Discussion.
|
|
||||||
|
|
||||||
> If you're fixing a bug, adding a new feature or improving something please provide the details in discussions,
|
|
||||||
> so that the development can be pointed in the intended direction.
|
|
||||||
|
|
||||||
Related discussion: <!-- Please link the related discussion -->
|
|
||||||
|
|
||||||
> Further notes in [Contribution Guidelines](.github/CONTRIBUTING.md)
|
|
||||||
> Thank you for your contribution.
|
|
||||||
|
|
||||||
### Description
|
|
||||||
|
|
||||||
This PR [briefly explain what it does]
|
|
||||||
|
|
||||||
> In case this PR introduced TypeScript/JavaScript code changes:
|
|
||||||
|
|
||||||
- [ ] I have written test cases for the changes in this pull request
|
|
||||||
- [ ] I have run `npm run format` before the commit.
|
|
||||||
- [ ] I have run `npm run lint` before the commit.
|
|
||||||
- [ ] I have run `npm run release` before the commit.
|
|
||||||
- [ ] `npm test` returns with no unit test errors and all code covered.
|
|
||||||
|
|
||||||
> In case this PR edits any scripts:
|
|
||||||
|
|
||||||
- [ ] I have checked the edited scripts for syntax.
|
|
||||||
- [ ] I have tested the changes in an integration test (If yes, provide workflow YAML and link).
|
|
||||||
|
|
||||||
<!--
|
|
||||||
- Please target the develop branch when submitting the pull request.
|
|
||||||
-->
|
|
||||||
21
.github/SECURITY.md
vendored
21
.github/SECURITY.md
vendored
@ -1,21 +0,0 @@
|
|||||||
# Security Policy
|
|
||||||
|
|
||||||
## Supported Versions
|
|
||||||
|
|
||||||
The latest patch version of `v2` release of this project is supported for security updates.
|
|
||||||
|
|
||||||
## Supported PHP Versions
|
|
||||||
|
|
||||||
This security policy only applies to the latest patch releases of the following PHP versions.
|
|
||||||
|
|
||||||
| Version | Supported |
|
|
||||||
|---------|--------------------|
|
|
||||||
| 8.1 | :white_check_mark: |
|
|
||||||
| 8.2 | :white_check_mark: |
|
|
||||||
| 8.3 | :white_check_mark: |
|
|
||||||
| 8.4 | :white_check_mark: |
|
|
||||||
|
|
||||||
## Reporting a Vulnerability
|
|
||||||
|
|
||||||
If you have found any issues that might have security implications in the versions supported, please send a report privately to [contact@setup-php.com](mailto:contact@setup-php.com).
|
|
||||||
Do not report security reports publicly.
|
|
||||||
4
.github/codeql/codeql-configuration.yml
vendored
4
.github/codeql/codeql-configuration.yml
vendored
@ -1,4 +0,0 @@
|
|||||||
name : CodeQL Configuration
|
|
||||||
|
|
||||||
paths:
|
|
||||||
- './src'
|
|
||||||
7
.github/dependabot.yml
vendored
7
.github/dependabot.yml
vendored
@ -1,7 +0,0 @@
|
|||||||
version: 2
|
|
||||||
updates:
|
|
||||||
- package-ecosystem: "github-actions"
|
|
||||||
directory: "/"
|
|
||||||
target-branch: "develop"
|
|
||||||
schedule:
|
|
||||||
interval: "weekly"
|
|
||||||
33
.github/workflows/codeql.yml
vendored
33
.github/workflows/codeql.yml
vendored
@ -1,33 +0,0 @@
|
|||||||
name: CodeQL Workflow
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 15 * * 6'
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
codeql:
|
|
||||||
if: github.event.repository.fork == false
|
|
||||||
permissions:
|
|
||||||
actions: read # for github/codeql-action/init to get workflow details
|
|
||||||
contents: read # for actions/checkout to fetch code
|
|
||||||
security-events: write # for github/codeql-action/autobuild to send a status report
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
with:
|
|
||||||
fetch-depth: 2
|
|
||||||
|
|
||||||
- name: Initialize CodeQL
|
|
||||||
uses: github/codeql-action/init@v4
|
|
||||||
with:
|
|
||||||
config-file: ./.github/codeql/codeql-configuration.yml
|
|
||||||
languages: javascript
|
|
||||||
|
|
||||||
- name: Autobuild
|
|
||||||
uses: github/codeql-action/autobuild@v4
|
|
||||||
|
|
||||||
- name: Perform CodeQL Analysis
|
|
||||||
uses: github/codeql-action/analyze@v4
|
|
||||||
138
.github/workflows/docs.yml
vendored
138
.github/workflows/docs.yml
vendored
@ -1,138 +0,0 @@
|
|||||||
name: Docs workflow
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 15 * * 6'
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
create:
|
|
||||||
if: github.event.repository.fork == false
|
|
||||||
permissions:
|
|
||||||
contents: none
|
|
||||||
name: Create
|
|
||||||
runs-on: ${{ matrix.operating-system }}
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
operating-system: [ubuntu-24.04, ubuntu-22.04, windows-2022, macos-15-intel]
|
|
||||||
php-versions: ['5.3', '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5', '8.6']
|
|
||||||
steps:
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: ${{ matrix.php-versions }}
|
|
||||||
tools: none
|
|
||||||
- name: Create file with all extensions for Linux and macOS
|
|
||||||
env:
|
|
||||||
file: php${{ matrix.php-versions }}-${{ matrix.operating-system }}.md
|
|
||||||
version: ${{ matrix.php-versions }}
|
|
||||||
if: matrix.operating-system != 'windows-2022'
|
|
||||||
run: |
|
|
||||||
php -m >> "$file.all"
|
|
||||||
- name: Create file with all extensions for Windows
|
|
||||||
env:
|
|
||||||
file: php${{ matrix.php-versions }}-${{ matrix.operating-system }}.md
|
|
||||||
version: ${{ matrix.php-versions }}
|
|
||||||
if: matrix.operating-system == 'windows-2022'
|
|
||||||
run: |
|
|
||||||
php -m | Out-File -FilePath "$env:file.all" -Append
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: ${{ matrix.php-versions }}
|
|
||||||
extensions: none
|
|
||||||
tools: none
|
|
||||||
- name: Create final file for Linux and macOS
|
|
||||||
env:
|
|
||||||
file: php${{ matrix.php-versions }}-${{ matrix.operating-system }}.md
|
|
||||||
version: ${{ matrix.php-versions }}
|
|
||||||
if: matrix.operating-system != 'windows-2022'
|
|
||||||
run: |
|
|
||||||
echo "## PHP $version" >> "$file"
|
|
||||||
printf "\n" >> "$file"
|
|
||||||
echo "\`\`\`" >> "$file"
|
|
||||||
php -m >> "$file.builtin"
|
|
||||||
while IFS= read -r line; do
|
|
||||||
if [[ $line == [* || -z "${line// }" ]]; then
|
|
||||||
echo "$line" >> "$file"
|
|
||||||
elif grep -q "^$line" "$file.builtin"; then
|
|
||||||
echo "$line (builtin)" >> "$file"
|
|
||||||
else
|
|
||||||
echo "$line (shared)" >> "$file"
|
|
||||||
fi
|
|
||||||
done < "$file.all"
|
|
||||||
echo "\`\`\`" >> "$file"
|
|
||||||
printf "\n" >> "$file"
|
|
||||||
rm "$file.all" "$file.builtin"
|
|
||||||
- name: Create final file for Windows
|
|
||||||
env:
|
|
||||||
file: php${{ matrix.php-versions }}-${{ matrix.operating-system }}.md
|
|
||||||
version: ${{ matrix.php-versions }}
|
|
||||||
if: matrix.operating-system == 'windows-2022'
|
|
||||||
run: |
|
|
||||||
Write-Output "## PHP ${{ matrix.php-versions }}`n" | Out-File -FilePath "$env:file"
|
|
||||||
Write-Output "``````" | Out-File -FilePath "$env:file" -Append
|
|
||||||
php -m | Out-File -FilePath "$env:file.builtin" -Append
|
|
||||||
Get-Content "$env:file.all" | ForEach-Object {
|
|
||||||
if ($_.startsWith('[') -or -not $_.trim()) {
|
|
||||||
Write-Output "$_" | Out-File -FilePath "$env:file" -Append
|
|
||||||
} elseif ($_ -in (Get-Content "$env:file.builtin")) {
|
|
||||||
Write-Output "$_ (builtin)" | Out-File -FilePath "$env:file" -Append
|
|
||||||
} else {
|
|
||||||
Write-Output "$_ (shared)" | Out-File -FilePath "$env:file" -Append
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Write-Output "```````n" | Out-File -FilePath "$env:file" -Append
|
|
||||||
Remove-Item "$env:file.all" -Force
|
|
||||||
Remove-Item "$env:file.builtin" -Force
|
|
||||||
- name: Upload artifacts
|
|
||||||
uses: actions/upload-artifact@v7
|
|
||||||
with:
|
|
||||||
name: lists-php${{ matrix.php-versions }}-${{ matrix.operating-system }}.md
|
|
||||||
path: php${{ matrix.php-versions }}-${{ matrix.operating-system }}.md
|
|
||||||
update:
|
|
||||||
if: github.event.repository.fork == false
|
|
||||||
permissions:
|
|
||||||
contents: write # for Git to git push
|
|
||||||
name: Update
|
|
||||||
needs: create
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
with:
|
|
||||||
repository: ${{ github.repository }}.wiki
|
|
||||||
- name: Download artifacts
|
|
||||||
uses: actions/download-artifact@v8
|
|
||||||
with:
|
|
||||||
path: ${{ github.workspace }}/lists
|
|
||||||
pattern: lists-*
|
|
||||||
merge-multiple: true
|
|
||||||
- name: Configure Git
|
|
||||||
run : |
|
|
||||||
git config --local user.email "${{ secrets.email }}"
|
|
||||||
git config --local user.name "${{ github.repository_owner }}"
|
|
||||||
- name: Combine
|
|
||||||
run: |
|
|
||||||
for os in ubuntu-24.04 ubuntu-22.04 windows-2025 windows-2022 windows-2019 macos-13 macos-14 macos-15 macos-26; do
|
|
||||||
echo "These are extensions which are loaded by default on the following PHP versions. More extensions which are available as packages and available on pecl are supported by setup-php. Refer to [php extension support](https://github.com/shivammathur/setup-php#heavy_plus_sign-php-extension-support) for more details." > Php-extensions-loaded-on-"$os".md
|
|
||||||
for version in 5.3 5.4 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3 8.4 8.5 8.6; do
|
|
||||||
if [[ "${os%-*}" = "macos" ]]; then
|
|
||||||
cat lists/php"$version"-macos-15-intel.md >> Php-extensions-loaded-on-"$os".md
|
|
||||||
elif [ "${os%-*}" = "windows" ]; then
|
|
||||||
cat lists/php"$version"-windows-2022.md >> Php-extensions-loaded-on-"$os".md
|
|
||||||
else
|
|
||||||
cat lists/php"$version"-"$os".md >> Php-extensions-loaded-on-"$os".md
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
done
|
|
||||||
rm -rf ./lists
|
|
||||||
- name: Update
|
|
||||||
run: |
|
|
||||||
if [ "$(git status --porcelain=v1 2>/dev/null | wc -l)" != "0" ]; then
|
|
||||||
git add .
|
|
||||||
git commit -m "Update PHP extensions on wiki - $(date +'%d-%m-%y')"
|
|
||||||
git push -f https://${{ github.repository_owner }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.wiki.git master || true
|
|
||||||
fi
|
|
||||||
63
.github/workflows/node.yml
vendored
63
.github/workflows/node.yml
vendored
@ -1,63 +0,0 @@
|
|||||||
name: Node workflow
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
- develop
|
|
||||||
- verbose
|
|
||||||
paths-ignore:
|
|
||||||
- '**.md'
|
|
||||||
- 'examples/**'
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
- develop
|
|
||||||
- verbose
|
|
||||||
paths-ignore:
|
|
||||||
- '**.md'
|
|
||||||
- 'examples/**'
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
run:
|
|
||||||
name: Run
|
|
||||||
runs-on: ${{ matrix.operating-system }}
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
operating-system: [ubuntu-latest, windows-latest, macos-latest]
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
with:
|
|
||||||
fetch-depth: 2
|
|
||||||
|
|
||||||
- name: Setup Node.js 24.x
|
|
||||||
uses: actions/setup-node@v6
|
|
||||||
with:
|
|
||||||
node-version: 24.x
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: npm install
|
|
||||||
|
|
||||||
- name: Prettier Format Check
|
|
||||||
run: npm run format-check
|
|
||||||
|
|
||||||
- name: ESLint Check
|
|
||||||
run: npm run lint
|
|
||||||
|
|
||||||
- name: Run tests
|
|
||||||
run: npm test
|
|
||||||
|
|
||||||
- name: Run npm audit
|
|
||||||
run: npm audit
|
|
||||||
|
|
||||||
- name: Send Coverage
|
|
||||||
uses: codecov/codecov-action@v5
|
|
||||||
with:
|
|
||||||
token: ${{ secrets.CODECOV_TOKEN }}
|
|
||||||
files: coverage/lcov.info
|
|
||||||
name: github-actions-codecov-${{ matrix.operating-system }}
|
|
||||||
fail_ci_if_error: false
|
|
||||||
verbose: true
|
|
||||||
93
.github/workflows/php.yml
vendored
93
.github/workflows/php.yml
vendored
@ -1,93 +0,0 @@
|
|||||||
name: Main workflow
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
- develop
|
|
||||||
- verbose
|
|
||||||
paths-ignore:
|
|
||||||
- '**.md'
|
|
||||||
- 'examples/**'
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
- develop
|
|
||||||
- verbose
|
|
||||||
paths-ignore:
|
|
||||||
- '**.md'
|
|
||||||
- 'examples/**'
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
env:
|
|
||||||
default-php-version: '8.2'
|
|
||||||
jobs:
|
|
||||||
run:
|
|
||||||
name: Run
|
|
||||||
runs-on: ${{ matrix.operating-system }}
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
operating-system: [ubuntu-24.04, ubuntu-22.04, windows-2022, macos-15-intel]
|
|
||||||
php-versions: ['5.3', '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5', '8.6']
|
|
||||||
include:
|
|
||||||
- operating-system: ubuntu-24.04
|
|
||||||
php-versions: ''
|
|
||||||
php-version-file: 'php-version-file'
|
|
||||||
env:
|
|
||||||
extensions: xml, opcache, xdebug, pcov, gd
|
|
||||||
key: cache-v5
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
|
|
||||||
- name: Setup cache environment
|
|
||||||
id: cache-env
|
|
||||||
uses: shivammathur/cache-extensions@develop
|
|
||||||
with:
|
|
||||||
php-version: ${{ matrix.php-versions || env.default-php-version }}
|
|
||||||
extensions: ${{ env.extensions }}
|
|
||||||
key: ${{ env.key }}
|
|
||||||
|
|
||||||
- name: Cache extensions
|
|
||||||
uses: actions/cache@v5
|
|
||||||
with:
|
|
||||||
path: ${{ steps.cache-env.outputs.dir }}
|
|
||||||
key: ${{ steps.cache-env.outputs.key }}
|
|
||||||
restore-keys: ${{ steps.cache-env.outputs.key }}
|
|
||||||
|
|
||||||
- name: Stage php-version-file
|
|
||||||
if: ${{ matrix.php-version-file == 'php-version-file' }}
|
|
||||||
run: |
|
|
||||||
echo ${{ env.default-php-version }} > php-version-file
|
|
||||||
|
|
||||||
- name: Setup PHP with extensions and custom config
|
|
||||||
run: node dist/index.js
|
|
||||||
env:
|
|
||||||
php-version: ${{ matrix.php-versions }}
|
|
||||||
php-version-file: ${{ matrix.php-version-file }}
|
|
||||||
extensions: ${{ env.extensions }}
|
|
||||||
ini-values: post_max_size=256M, short_open_tag=On, date.timezone=Asia/Kolkata
|
|
||||||
|
|
||||||
- name: Testing PHP version
|
|
||||||
run: |
|
|
||||||
php -v
|
|
||||||
php -r "if(strpos(phpversion(), '${{ matrix.php-versions || env.default-php-version }}') === false) {throw new Exception('Wrong PHP version Installed');}"
|
|
||||||
|
|
||||||
- name: Testing Composer version
|
|
||||||
run: |
|
|
||||||
composer -V
|
|
||||||
php -r "if(strpos(@exec('composer -V'), 'Composer version') === false) {throw new Exception('Composer not found');}"
|
|
||||||
- name: Testing Extensions
|
|
||||||
run: |
|
|
||||||
php -m
|
|
||||||
php -r "if(! extension_loaded('gd')) {throw new Exception('gd not found');}"
|
|
||||||
php -r "if(! extension_loaded('xml')) {throw new Exception('xml not found');}"
|
|
||||||
php -r "if(! extension_loaded('Xdebug')) {throw new Exception('Xdebug not found');}"
|
|
||||||
php -r "if(phpversion()>=7.1 && ! extension_loaded('pcov')) {throw new Exception('PCOV not found');}"
|
|
||||||
- name: Testing ini values
|
|
||||||
run: |
|
|
||||||
php -r "if(ini_get('memory_limit')!='-1') {throw new Exception('memory_limit not disabled');}"
|
|
||||||
php -r "if(ini_get('post_max_size')!='256M') {throw new Exception('post_max_size not added');}"
|
|
||||||
php -r "if(ini_get('short_open_tag')!=1) {throw new Exception('short_open_tag not added');}"
|
|
||||||
php -r "if(ini_get('date.timezone')!='Asia/Kolkata') {throw new Exception('date.timezone not added');}"
|
|
||||||
62
.github/workflows/publish.yml
vendored
62
.github/workflows/publish.yml
vendored
@ -1,62 +0,0 @@
|
|||||||
name: Publish Package
|
|
||||||
on:
|
|
||||||
release:
|
|
||||||
types: [created]
|
|
||||||
workflow_dispatch:
|
|
||||||
inputs:
|
|
||||||
skip:
|
|
||||||
description: Skip release to repository
|
|
||||||
required: false
|
|
||||||
tag:
|
|
||||||
description: Tag name
|
|
||||||
required: true
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
packages: write
|
|
||||||
steps:
|
|
||||||
- name: Checkout release
|
|
||||||
if: github.event_name != 'workflow_dispatch'
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
|
|
||||||
- name: Checkout tag
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
if: github.event_name == 'workflow_dispatch'
|
|
||||||
with:
|
|
||||||
ref: ${{ github.event.inputs.tag }}
|
|
||||||
|
|
||||||
- name: Setup Node.js
|
|
||||||
uses: actions/setup-node@v6
|
|
||||||
with:
|
|
||||||
node-version: '20.x'
|
|
||||||
registry-url: https://registry.npmjs.org
|
|
||||||
|
|
||||||
- name: Install dependencies and add lib
|
|
||||||
run: |
|
|
||||||
npm install
|
|
||||||
npm run build
|
|
||||||
sed -i -e '/lib\//d' .gitignore
|
|
||||||
|
|
||||||
- name: Publish to NPM
|
|
||||||
if: "!contains(github.event.inputs.skip, 'skip-npm')"
|
|
||||||
run: npm publish --access public
|
|
||||||
env:
|
|
||||||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
||||||
|
|
||||||
- name: Change to GitHub Packages registry
|
|
||||||
uses: actions/setup-node@v6
|
|
||||||
with:
|
|
||||||
registry-url: https://npm.pkg.github.com
|
|
||||||
scope: '@shivammathur'
|
|
||||||
|
|
||||||
- name: Patch package.json
|
|
||||||
run: |
|
|
||||||
sed -i 's#"name": "#"name": "@shivammathur/#' package.json
|
|
||||||
|
|
||||||
- name: Publish to GitHub Packages
|
|
||||||
if: "!contains(github.event.inputs.skip, 'skip-github-packages')"
|
|
||||||
run: npm publish
|
|
||||||
env:
|
|
||||||
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
27
.github/workflows/workflow.yml
vendored
Normal file
27
.github/workflows/workflow.yml
vendored
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
name: Main workflow
|
||||||
|
on: [push]
|
||||||
|
jobs:
|
||||||
|
run:
|
||||||
|
name: Run
|
||||||
|
runs-on: ${{ matrix.operating-system }}
|
||||||
|
strategy:
|
||||||
|
max-parallel: 15
|
||||||
|
matrix:
|
||||||
|
operating-system: [ubuntu-latest, windows-latest, macOS-latest]
|
||||||
|
php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3']
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Set Node.js 10.x
|
||||||
|
uses: actions/setup-node@master
|
||||||
|
with:
|
||||||
|
version: 10.x
|
||||||
|
|
||||||
|
- name: Installing NPM
|
||||||
|
run: npm install
|
||||||
|
|
||||||
|
- name: Installing PHP
|
||||||
|
run: node lib/install.js
|
||||||
|
env:
|
||||||
|
php-version: ${{ matrix.php-versions }}
|
||||||
93
.gitignore
vendored
93
.gitignore
vendored
@ -1,93 +0,0 @@
|
|||||||
# Explicitly not ignoring node_modules so that they are included in package downloaded by runner
|
|
||||||
node_modules/
|
|
||||||
__tests__/runner/*
|
|
||||||
lib/
|
|
||||||
|
|
||||||
# Rest of the file pulled from https://github.com/github/gitignore/blob/main/Node.gitignore
|
|
||||||
# Logs
|
|
||||||
logs
|
|
||||||
*.log
|
|
||||||
npm-debug.log*
|
|
||||||
yarn-debug.log*
|
|
||||||
yarn-error.log*
|
|
||||||
lerna-debug.log*
|
|
||||||
|
|
||||||
# Diagnostic reports (https://nodejs.org/api/report.html)
|
|
||||||
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
|
||||||
|
|
||||||
# Runtime data
|
|
||||||
pids
|
|
||||||
*.pid
|
|
||||||
*.seed
|
|
||||||
*.pid.lock
|
|
||||||
|
|
||||||
# Directory for instrumented libs generated by jscoverage/JSCover
|
|
||||||
lib-cov
|
|
||||||
|
|
||||||
# Coverage directory used by tools like istanbul
|
|
||||||
coverage
|
|
||||||
*.lcov
|
|
||||||
|
|
||||||
# nyc test coverage
|
|
||||||
.nyc_output
|
|
||||||
|
|
||||||
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
|
|
||||||
.grunt
|
|
||||||
|
|
||||||
# Bower dependency directory (https://bower.io/)
|
|
||||||
bower_components
|
|
||||||
|
|
||||||
# node-waf configuration
|
|
||||||
.lock-wscript
|
|
||||||
|
|
||||||
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
|
||||||
build/Release
|
|
||||||
|
|
||||||
# Dependency directories
|
|
||||||
jspm_packages/
|
|
||||||
|
|
||||||
# TypeScript v1 declaration files
|
|
||||||
typings/
|
|
||||||
|
|
||||||
# TypeScript cache
|
|
||||||
*.tsbuildinfo
|
|
||||||
|
|
||||||
# Optional npm cache directory
|
|
||||||
.npm
|
|
||||||
|
|
||||||
# Optional eslint cache
|
|
||||||
.eslintcache
|
|
||||||
|
|
||||||
# Optional REPL history
|
|
||||||
.node_repl_history
|
|
||||||
|
|
||||||
# Output of 'npm pack'
|
|
||||||
*.tgz
|
|
||||||
|
|
||||||
# Yarn Integrity file
|
|
||||||
.yarn-integrity
|
|
||||||
|
|
||||||
# dotenv environment variables file
|
|
||||||
.env
|
|
||||||
.env.test
|
|
||||||
|
|
||||||
# parcel-bundler cache (https://parceljs.org/)
|
|
||||||
.cache
|
|
||||||
|
|
||||||
# next.js build output
|
|
||||||
.next
|
|
||||||
|
|
||||||
# nuxt.js build output
|
|
||||||
.nuxt
|
|
||||||
|
|
||||||
# vuepress build output
|
|
||||||
.vuepress/dist
|
|
||||||
|
|
||||||
# Serverless directories
|
|
||||||
.serverless/
|
|
||||||
|
|
||||||
# FuseBox cache
|
|
||||||
.fusebox/
|
|
||||||
|
|
||||||
# DynamoDB Local files
|
|
||||||
.dynamodb/
|
|
||||||
@ -1 +0,0 @@
|
|||||||
20
|
|
||||||
@ -1,12 +1,11 @@
|
|||||||
{
|
{
|
||||||
"arrowParens": "avoid",
|
|
||||||
"bracketSpacing": false,
|
|
||||||
"endOfLine": "auto",
|
|
||||||
"parser": "typescript",
|
|
||||||
"printWidth": 80,
|
"printWidth": 80,
|
||||||
|
"tabWidth": 2,
|
||||||
|
"useTabs": false,
|
||||||
"semi": true,
|
"semi": true,
|
||||||
"singleQuote": true,
|
"singleQuote": true,
|
||||||
"tabWidth": 2,
|
|
||||||
"trailingComma": "none",
|
"trailingComma": "none",
|
||||||
"useTabs": false
|
"bracketSpacing": false,
|
||||||
}
|
"arrowParens": "avoid",
|
||||||
|
"parser": "typescript"
|
||||||
|
}
|
||||||
2
LICENSE
2
LICENSE
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
The MIT License (MIT)
|
The MIT License (MIT)
|
||||||
|
|
||||||
Copyright (c) shivammathur and contributors
|
Copyright (c) 2019 shivammathur and contributors
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
|||||||
@ -1,16 +0,0 @@
|
|||||||
import * as config from '../src/config';
|
|
||||||
|
|
||||||
describe('Config tests', () => {
|
|
||||||
it.each`
|
|
||||||
ini_values | os | output
|
|
||||||
${'a=b, c=d'} | ${'win32'} | ${'Add-Content "$php_dir\\php.ini" "a=b\nc=d"'}
|
|
||||||
${'a=b, c=d'} | ${'linux'} | ${'echo "a=b\nc=d" | sudo tee -a "${pecl_file:-${ini_file[@]}}"'}
|
|
||||||
${'a=b, c=d'} | ${'darwin'} | ${'echo "a=b\nc=d" | sudo tee -a "${pecl_file:-${ini_file[@]}}"'}
|
|
||||||
${'a=b & ~c'} | ${'win32'} | ${'Add-Content "$php_dir\\php.ini" "a=\'b & ~c\'"'}
|
|
||||||
${'a="~(b)"'} | ${'win32'} | ${'Add-Content "$php_dir\\php.ini" "a=\'~(b)\'"'}
|
|
||||||
${'a="b, c"'} | ${'win32'} | ${'Add-Content "$php_dir\\php.ini" "a=b, c"'}
|
|
||||||
${'a=b, c=d'} | ${'openbsd'} | ${'Platform openbsd is not supported'}
|
|
||||||
`('checking addINIValues on $os', async ({ini_values, os, output}) => {
|
|
||||||
expect(await config.addINIValues(ini_values, os)).toContain(output);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
@ -1,106 +0,0 @@
|
|||||||
import * as core from '../src/core';
|
|
||||||
|
|
||||||
describe('Core tests', () => {
|
|
||||||
const originalEnv = process.env;
|
|
||||||
const originalExitCode = process.exitCode;
|
|
||||||
let stdoutOutput: string;
|
|
||||||
const originalWrite = process.stdout.write;
|
|
||||||
|
|
||||||
beforeEach(() => {
|
|
||||||
process.env = {...originalEnv};
|
|
||||||
process.exitCode = undefined;
|
|
||||||
stdoutOutput = '';
|
|
||||||
process.stdout.write = jest.fn((chunk: string | Uint8Array): boolean => {
|
|
||||||
stdoutOutput += chunk.toString();
|
|
||||||
return true;
|
|
||||||
}) as unknown as typeof process.stdout.write;
|
|
||||||
});
|
|
||||||
|
|
||||||
afterEach(() => {
|
|
||||||
process.env = originalEnv;
|
|
||||||
process.exitCode = originalExitCode;
|
|
||||||
process.stdout.write = originalWrite;
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking issueCommand with no properties', () => {
|
|
||||||
core.issueCommand('warning', {}, 'test message');
|
|
||||||
expect(stdoutOutput).toContain('::warning::test message');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking issueCommand with properties', () => {
|
|
||||||
core.issueCommand('error', {file: 'test.ts', line: '10'}, 'error message');
|
|
||||||
expect(stdoutOutput).toContain(
|
|
||||||
'::error file=test.ts,line=10::error message'
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking issueCommand escapes special characters in message', () => {
|
|
||||||
core.issueCommand('warning', {}, 'line1\nline2\rline3%percent');
|
|
||||||
expect(stdoutOutput).toContain(
|
|
||||||
'::warning::line1%0Aline2%0Dline3%25percent'
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking issueCommand escapes special characters in properties', () => {
|
|
||||||
core.issueCommand('error', {file: 'path:to,file'}, 'message');
|
|
||||||
expect(stdoutOutput).toContain('::error file=path%3Ato%2Cfile::message');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking issueCommand with Error object', () => {
|
|
||||||
const error = new Error('test error');
|
|
||||||
core.issueCommand('error', {}, error);
|
|
||||||
expect(stdoutOutput).toContain('::error::Error: test error');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking issueCommand filters empty properties', () => {
|
|
||||||
core.issueCommand('warning', {file: 'test.ts', line: ''}, 'message');
|
|
||||||
expect(stdoutOutput).toContain('::warning file=test.ts::message');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking error', () => {
|
|
||||||
core.error('error message');
|
|
||||||
expect(stdoutOutput).toContain('::error::error message');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking error with Error object', () => {
|
|
||||||
core.error(new Error('error instance'));
|
|
||||||
expect(stdoutOutput).toContain('::error::Error: error instance');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking setFailed', () => {
|
|
||||||
core.setFailed('failure message');
|
|
||||||
expect(process.exitCode).toBe(1);
|
|
||||||
expect(stdoutOutput).toContain('::error::failure message');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking setFailed with Error object', () => {
|
|
||||||
core.setFailed(new Error('failure error'));
|
|
||||||
expect(process.exitCode).toBe(1);
|
|
||||||
expect(stdoutOutput).toContain('::error::Error: failure error');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking getInput returns value', () => {
|
|
||||||
process.env['INPUT_TEST-INPUT'] = 'test value';
|
|
||||||
expect(core.getInput('test-input')).toBe('test value');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking getInput trims value', () => {
|
|
||||||
process.env['INPUT_TEST-INPUT'] = ' trimmed ';
|
|
||||||
expect(core.getInput('test-input')).toBe('trimmed');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking getInput returns empty string for missing input', () => {
|
|
||||||
expect(core.getInput('missing-input')).toBe('');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking getInput throws for required missing input', () => {
|
|
||||||
expect(() => core.getInput('missing-input', true)).toThrow(
|
|
||||||
'Input required and not supplied: missing-input'
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking getInput handles spaces in name', () => {
|
|
||||||
process.env['INPUT_INPUT_WITH_SPACES'] = 'spaced value';
|
|
||||||
expect(core.getInput('input with spaces')).toBe('spaced value');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
@ -1,44 +0,0 @@
|
|||||||
import * as coverage from '../src/coverage';
|
|
||||||
|
|
||||||
describe('Config tests', () => {
|
|
||||||
it.each`
|
|
||||||
driver | php | os | output
|
|
||||||
${'PCOV'} | ${'7.4'} | ${'win32'} | ${'Add-Extension pcov,Disable-Extension xdebug false'}
|
|
||||||
${'pcov'} | ${'7.4'} | ${'win32'} | ${'$pcov_version = php -r "echo phpversion(\'pcov\');"'}
|
|
||||||
${'pcov'} | ${'7.4'} | ${'win32'} | ${'PCOV $pcov_version enabled as coverage driver'}
|
|
||||||
${'pcov'} | ${'7.0'} | ${'win32'} | ${'PHP 7.1 or newer is required'}
|
|
||||||
${'pcov'} | ${'5.6'} | ${'win32'} | ${'PHP 7.1 or newer is required'}
|
|
||||||
${'pcov'} | ${'7.4'} | ${'win32'} | ${'Add-Extension pcov,Disable-Extension xdebug false'}
|
|
||||||
${'pcov'} | ${'7.4'} | ${'linux'} | ${'add_extension pcov,disable_extension xdebug false'}
|
|
||||||
${'pcov'} | ${'7.4'} | ${'darwin'} | ${'add_brew_extension pcov,disable_extension xdebug false'}
|
|
||||||
${'xdebug'} | ${'7.4'} | ${'win32'} | ${'Add-Extension xdebug'}
|
|
||||||
${'xdebug3'} | ${'7.1'} | ${'win32'} | ${'xdebug3 is not supported on PHP 7.1'}
|
|
||||||
${'xdebug2'} | ${'7.4'} | ${'win32'} | ${'Add-Extension xdebug stable 2.9.8'}
|
|
||||||
${'xdebug'} | ${'8.0'} | ${'linux'} | ${'add_extension xdebug'}
|
|
||||||
${'xdebug3'} | ${'8.0'} | ${'linux'} | ${'add_extension xdebug'}
|
|
||||||
${'xdebug2'} | ${'7.4'} | ${'linux'} | ${'add_pecl_extension xdebug 2.9.8 zend_extension'}
|
|
||||||
${'xdebug'} | ${'7.4'} | ${'linux'} | ${'xdebug_version="$(php -r "echo phpversion(\'xdebug\');")"'}
|
|
||||||
${'xdebug'} | ${'7.4'} | ${'linux'} | ${'Xdebug $xdebug_version enabled as coverage driver'}
|
|
||||||
${'xdebug'} | ${'7.4'} | ${'darwin'} | ${'add_brew_extension xdebug'}
|
|
||||||
${'xdebug3'} | ${'7.1'} | ${'darwin'} | ${'xdebug3 is not supported on PHP 7.1'}
|
|
||||||
${'xdebug2'} | ${'7.4'} | ${'darwin'} | ${'add_brew_extension xdebug2'}
|
|
||||||
${'xdebug2'} | ${'8.0'} | ${'darwin'} | ${'xdebug2 is not supported on PHP 8.0'}
|
|
||||||
${'none'} | ${'7.4'} | ${'win32'} | ${'Disable-Extension xdebug false,Disable-Extension pcov false'}
|
|
||||||
${'none'} | ${'7.4'} | ${'linux'} | ${'disable_extension xdebug false,disable_extension pcov false'}
|
|
||||||
${'none'} | ${'7.4'} | ${'darwin'} | ${'disable_extension xdebug false,disable_extension pcov false'}
|
|
||||||
${'nocov'} | ${'7.x'} | ${'any'} | ${''}
|
|
||||||
${''} | ${'7.x'} | ${'any'} | ${''}
|
|
||||||
`(
|
|
||||||
'checking addCoverage with $driver on $os',
|
|
||||||
async ({driver, php, os, output}) => {
|
|
||||||
const script: string = await coverage.addCoverage(driver, php, os);
|
|
||||||
if (output) {
|
|
||||||
output.split(',').forEach((command: string) => {
|
|
||||||
expect(script).toContain(command);
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
expect(script).toEqual(output);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
);
|
|
||||||
});
|
|
||||||
@ -1,161 +0,0 @@
|
|||||||
import * as fs from 'fs';
|
|
||||||
import * as extensions from '../src/extensions';
|
|
||||||
|
|
||||||
describe('Extension tests', () => {
|
|
||||||
it.each`
|
|
||||||
extension | version | output
|
|
||||||
${'none'} | ${'7.4'} | ${'Disable-AllShared'}
|
|
||||||
${':intl'} | ${'7.4'} | ${'Disable-Extension intl'}
|
|
||||||
${'ast-beta'} | ${'7.4'} | ${'Add-Extension ast beta'}
|
|
||||||
${'blackfire'} | ${'7.3'} | ${'Add-Blackfire blackfire'}
|
|
||||||
${'blackfire-1.31.0'} | ${'7.3'} | ${'Add-Blackfire blackfire-1.31.0'}
|
|
||||||
${'grpc-1.2.3'} | ${'7.4'} | ${'Add-Extension grpc stable 1.2.3'}
|
|
||||||
${'inotify-1.2.3alpha2'} | ${'7.4'} | ${'Add-Extension inotify alpha 1.2.3'}
|
|
||||||
${'ioncube'} | ${'7.4'} | ${'Add-Ioncube'}
|
|
||||||
${'mongodb-mongodb/mongo-php-driver@master'} | ${'7.3'} | ${'Add-Log "$cross" "mongodb-mongodb/mongo-php-driver@master" "mongodb-mongodb/mongo-php-driver@master is not supported on PHP 7.3"'}
|
|
||||||
${'mysql'} | ${'7.4'} | ${'Add-Extension mysqli\nAdd-Extension mysqlnd'}
|
|
||||||
${'mysql'} | ${'5.5'} | ${'Add-Extension mysql\nAdd-Extension mysqli\nAdd-Extension mysqlnd'}
|
|
||||||
${'oci8'} | ${'7.4'} | ${'Add-Oci oci8'}
|
|
||||||
${'pcov'} | ${'5.6'} | ${'Add-Log "$cross" "pcov" "pcov is not supported on PHP 5.6"'}
|
|
||||||
${'pdo_oci'} | ${'7.4'} | ${'Add-Oci pdo_oci'}
|
|
||||||
${'ibm_db2'} | ${'7.4'} | ${'Add-Ibm ibm_db2'}
|
|
||||||
${'pdo_ibm'} | ${'7.4'} | ${'Add-Ibm pdo_ibm'}
|
|
||||||
${'pecl_http'} | ${'7.4'} | ${'Add-Http'}
|
|
||||||
${'pdo_sqlsrv'} | ${'7.4'} | ${'Add-Sqlsrv pdo_sqlsrv'}
|
|
||||||
${'phalcon3'} | ${'7.2'} | ${'Add-Phalcon phalcon3'}
|
|
||||||
${'phalcon4'} | ${'7.4'} | ${'Add-Phalcon phalcon4'}
|
|
||||||
${'sqlite'} | ${'7.4'} | ${'Add-Extension sqlite3'}
|
|
||||||
${'sqlsrv'} | ${'5.6'} | ${'Add-Extension sqlsrv'}
|
|
||||||
${'sqlsrv'} | ${'7.4'} | ${'Add-Sqlsrv sqlsrv'}
|
|
||||||
${'sqlsrv-1.2.3preview1'} | ${'7.4'} | ${'Add-Extension sqlsrv devel 1.2.3'}
|
|
||||||
${'Xdebug'} | ${'7.4'} | ${'Add-Extension xdebug'}
|
|
||||||
${'xdebug2'} | ${'7.2'} | ${'Add-Extension xdebug stable 2.9.8'}
|
|
||||||
${'zephir_parser'} | ${'7.2'} | ${'Add-ZephirParser zephir_parser'}
|
|
||||||
`(
|
|
||||||
'checking addExtensionOnWindows for extension $extension on version $version',
|
|
||||||
async ({extension, version, output}) => {
|
|
||||||
expect(
|
|
||||||
await extensions.addExtension(extension, version, 'win32')
|
|
||||||
).toContain(output);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
it.each`
|
|
||||||
extension | version | output
|
|
||||||
${'none'} | ${'7.4'} | ${'disable_all_shared'}
|
|
||||||
${':intl'} | ${'7.4'} | ${'disable_extension intl'}
|
|
||||||
${'ast-beta'} | ${'7.4'} | ${'add_unstable_extension ast beta extension'}
|
|
||||||
${'blackfire'} | ${'7.3'} | ${'add_blackfire blackfire'}
|
|
||||||
${'blackfire-1.31.0'} | ${'7.3'} | ${'add_blackfire blackfire-1.31.0'}
|
|
||||||
${'couchbase'} | ${'7.4'} | ${'add_couchbase'}
|
|
||||||
${'gearman'} | ${'5.6'} | ${'add_gearman'}
|
|
||||||
${'geos'} | ${'7.3'} | ${'add_geos'}
|
|
||||||
${'grpc-1.2.3'} | ${'7.4'} | ${'add_pecl_extension grpc 1.2.3 extension'}
|
|
||||||
${'http-1.2.3'} | ${'7.3'} | ${'add_http http-1.2.3'}
|
|
||||||
${'intl-65.1'} | ${'5.6'} | ${'add_intl intl-65.1'}
|
|
||||||
${'ioncube'} | ${'7.3'} | ${'add_ioncube'}
|
|
||||||
${'memcache-8.2'} | ${'8.2'} | ${'add_pecl_extension memcache 8.2 extension'}
|
|
||||||
${'mongodb-mongodb/mongo-php-driver@master'} | ${'7.3'} | ${'add_extension_from_source mongodb https://github.com mongodb mongo-php-driver master extension'}
|
|
||||||
${'oci8'} | ${'7.3'} | ${'add_oci oci8'}
|
|
||||||
${'pcov'} | ${'5.6'} | ${'add_log "$cross" "pcov" "pcov is not supported on PHP 5.6'}
|
|
||||||
${'ibm_db2'} | ${'7.3'} | ${'add_ibm ibm_db2'}
|
|
||||||
${'pdo-odbc'} | ${'7.4'} | ${'add_pdo_extension odbc'}
|
|
||||||
${'pdo_cubrid'} | ${'7.0'} | ${'add_cubrid pdo_cubrid'}
|
|
||||||
${'pdo_cubrid'} | ${'7.4'} | ${'add_pdo_extension cubrid'}
|
|
||||||
${'pdo_mysql'} | ${'7.4'} | ${'add_pdo_extension mysql'}
|
|
||||||
${'pdo_oci'} | ${'7.3'} | ${'add_oci pdo_oci'}
|
|
||||||
${'pdo_ibm'} | ${'7.3'} | ${'add_ibm pdo_ibm'}
|
|
||||||
${'pdo_sqlsrv'} | ${'7.4'} | ${'add_sqlsrv pdo_sqlsrv'}
|
|
||||||
${'pecl_http'} | ${'7.3'} | ${'add_http'}
|
|
||||||
${'phalcon3'} | ${'7.3'} | ${'add_phalcon phalcon3'}
|
|
||||||
${'relay'} | ${'7.4'} | ${'add_relay relay'}
|
|
||||||
${'relay-v1.2.3'} | ${'7.4'} | ${'add_relay relay-v1.2.3'}
|
|
||||||
${'sqlite'} | ${'7.4'} | ${'add_extension sqlite3'}
|
|
||||||
${'sqlsrv-1.2.3-beta1'} | ${'7.4'} | ${'add_pecl_extension sqlsrv 1.2.3beta1 extension'}
|
|
||||||
${'Xdebug'} | ${'7.4'} | ${'add_extension xdebug'}
|
|
||||||
${'xdebug-alpha'} | ${'7.4'} | ${'add_unstable_extension xdebug alpha zend_extension'}
|
|
||||||
${'xdebug2'} | ${'7.2'} | ${'add_pecl_extension xdebug 2.9.8 zend_extension'}
|
|
||||||
${'zephir_parser-1.2.3'} | ${'7.2'} | ${'add_zephir_parser zephir_parser-1.2.3'}
|
|
||||||
`(
|
|
||||||
'checking addExtensionOnLinux for extension $extension on version $version',
|
|
||||||
async ({extension, version, output}) => {
|
|
||||||
expect(
|
|
||||||
await extensions.addExtension(extension, version, 'linux')
|
|
||||||
).toContain(output);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
it.each`
|
|
||||||
extension | version | output
|
|
||||||
${'none'} | ${'7.2'} | ${'disable_all_shared'}
|
|
||||||
${':intl'} | ${'7.2'} | ${'disable_extension intl'}
|
|
||||||
${'ast-beta'} | ${'7.2'} | ${'add_unstable_extension ast beta extension'}
|
|
||||||
${'blackfire'} | ${'7.3'} | ${'add_blackfire blackfire'}
|
|
||||||
${'blackfire-1.31.0'} | ${'7.3'} | ${'add_blackfire blackfire-1.31.0'}
|
|
||||||
${'couchbase'} | ${'5.6'} | ${'add_couchbase'}
|
|
||||||
${'does_not_exist'} | ${'7.2'} | ${'add_extension does_not_exist'}
|
|
||||||
${'geos'} | ${'7.3'} | ${'add_geos'}
|
|
||||||
${'grpc-1.2.3'} | ${'7.2'} | ${'add_pecl_extension grpc 1.2.3 extension'}
|
|
||||||
${'http-1.2.3'} | ${'7.3'} | ${'add_http http-1.2.3'}
|
|
||||||
${'imagick'} | ${'5.5'} | ${'add_extension imagick'}
|
|
||||||
${'ioncube'} | ${'7.3'} | ${'add_ioncube'}
|
|
||||||
${'mongodb-mongodb/mongo-php-driver@master'} | ${'7.2'} | ${'add_extension_from_source mongodb https://github.com mongodb mongo-php-driver master extension'}
|
|
||||||
${'oci8'} | ${'7.3'} | ${'add_oci oci8'}
|
|
||||||
${'pcov'} | ${'5.6'} | ${'add_log "$cross" "pcov" "pcov is not supported on PHP 5.6"'}
|
|
||||||
${'pdo_oci'} | ${'7.3'} | ${'add_oci pdo_oci'}
|
|
||||||
${'pecl_http'} | ${'7.3'} | ${'add_http'}
|
|
||||||
${'relay-1.2.3'} | ${'7.4'} | ${'add_relay relay-1.2.3'}
|
|
||||||
${'sqlite'} | ${'7.2'} | ${'add_extension sqlite3'}
|
|
||||||
${'zephir_parser-v1.2.3'} | ${'7.2'} | ${'add_zephir_parser zephir_parser-v1.2.3'}
|
|
||||||
`(
|
|
||||||
'checking addExtensionOnDarwin for extension $extension on version $version',
|
|
||||||
async ({extension, version, output}) => {
|
|
||||||
expect(
|
|
||||||
await extensions.addExtension(extension, version, 'darwin')
|
|
||||||
).toContain(output);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
const data: string[][] = fs
|
|
||||||
.readFileSync('src/configs/brew_extensions')
|
|
||||||
.toString()
|
|
||||||
.split(/\r?\n/)
|
|
||||||
.filter(Boolean)
|
|
||||||
.map(line => {
|
|
||||||
const [formula, extension]: string[] = line.split('=');
|
|
||||||
const prefix: string =
|
|
||||||
extension == 'xdebug' ? 'zend_extension' : 'extension';
|
|
||||||
const ext_name = extension.replace(/\d+|(pdo|pecl)[_-]/, '');
|
|
||||||
const output: string = fs.existsSync(
|
|
||||||
`src/scripts/extensions/${ext_name}.sh`
|
|
||||||
)
|
|
||||||
? `add_${ext_name}`
|
|
||||||
: `add_brew_extension ${formula} ${prefix}`;
|
|
||||||
return [
|
|
||||||
formula,
|
|
||||||
formula.match(/phalcon3|lua|propro/) ? '7.3' : '8.1',
|
|
||||||
output
|
|
||||||
];
|
|
||||||
});
|
|
||||||
|
|
||||||
it.each(data)(
|
|
||||||
'checking addExtensionOnDarwin for brew extension %s',
|
|
||||||
async (extension, version, output) => {
|
|
||||||
expect(
|
|
||||||
await extensions.addExtension(extension, version, 'darwin')
|
|
||||||
).toContain(output);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
it.each`
|
|
||||||
extension | version | output
|
|
||||||
${'xdebug'} | ${'7.2'} | ${'Platform openbsd is not supported'}
|
|
||||||
`(
|
|
||||||
'checking addExtension on openbsd for extension $extension on version $version',
|
|
||||||
async ({extension, version, output}) => {
|
|
||||||
expect(
|
|
||||||
await extensions.addExtension(extension, version, 'openbsd')
|
|
||||||
).toContain(output);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
});
|
|
||||||
@ -1,45 +0,0 @@
|
|||||||
import * as fetch from '../src/fetch';
|
|
||||||
import nock from 'nock';
|
|
||||||
|
|
||||||
it('checking fetch', async () => {
|
|
||||||
const host_url = 'https://example.com';
|
|
||||||
const manifest_url = host_url + '/manifest';
|
|
||||||
const ping_url = host_url + '/ping';
|
|
||||||
|
|
||||||
nock(host_url)
|
|
||||||
.get('/manifest')
|
|
||||||
.reply(200, {latest: 'latest'})
|
|
||||||
.get('/manifest', '', {
|
|
||||||
reqheaders: {authorization: 'Bearer invalid_token'}
|
|
||||||
})
|
|
||||||
.reply(401, {error: '401: Unauthorized'})
|
|
||||||
.get('/ping')
|
|
||||||
.twice()
|
|
||||||
.reply(301, undefined, {
|
|
||||||
Location: host_url + '/pong'
|
|
||||||
})
|
|
||||||
.get('/pong')
|
|
||||||
.reply(200, 'pong')
|
|
||||||
.get('/error')
|
|
||||||
.replyWithError('Network failure');
|
|
||||||
|
|
||||||
let response: Record<string, string> = await fetch.fetch(manifest_url);
|
|
||||||
expect(response.error).toBe(undefined);
|
|
||||||
expect(response.data).toContain('latest');
|
|
||||||
|
|
||||||
response = await fetch.fetch(ping_url, '', 1);
|
|
||||||
expect(response.error).toBe(undefined);
|
|
||||||
expect(response.data).toContain('pong');
|
|
||||||
|
|
||||||
response = await fetch.fetch(ping_url, '', 0);
|
|
||||||
expect(response.error).toBe('301: Redirect error');
|
|
||||||
expect(response.data).toBe(undefined);
|
|
||||||
|
|
||||||
response = await fetch.fetch(manifest_url, 'invalid_token');
|
|
||||||
expect(response.error).not.toBe(undefined);
|
|
||||||
expect(response.data).toBe(undefined);
|
|
||||||
|
|
||||||
response = await fetch.fetch(host_url + '/error');
|
|
||||||
expect(response.error).toContain('Fetch error:');
|
|
||||||
expect(response.data).toBe(undefined);
|
|
||||||
});
|
|
||||||
@ -1,87 +1,6 @@
|
|||||||
import * as install from '../src/install';
|
let a = '2';
|
||||||
import * as utils from '../src/utils';
|
describe('Finder tests', () => {
|
||||||
|
it('checking 2', async () => {
|
||||||
/**
|
expect(a).toBe('2');
|
||||||
* Mock install.ts
|
});
|
||||||
*/
|
|
||||||
jest.mock('../src/install', () => ({
|
|
||||||
getScript: jest
|
|
||||||
.fn()
|
|
||||||
.mockImplementation(async (os: string): Promise<string> => {
|
|
||||||
const filename = os + (await utils.scriptExtension(os));
|
|
||||||
const version: string = await utils.parseVersion(
|
|
||||||
await utils.readPHPVersion()
|
|
||||||
);
|
|
||||||
const ini_file: string = await utils.parseIniFile(
|
|
||||||
await utils.getInput('ini-file', false)
|
|
||||||
);
|
|
||||||
const extension_csv: string = process.env['extensions'] || '';
|
|
||||||
const ini_values_csv: string = process.env['ini-values'] || '';
|
|
||||||
const coverage_driver: string = process.env['coverage'] || '';
|
|
||||||
const tools_csv: string = process.env['tools'] || '';
|
|
||||||
let script = await utils.joins(filename, version, ini_file);
|
|
||||||
script += extension_csv ? ' install extensions' : '';
|
|
||||||
script += tools_csv ? ' add_tool' : '';
|
|
||||||
script += coverage_driver ? ' set coverage driver' : '';
|
|
||||||
script += ini_values_csv ? ' edit php.ini' : '';
|
|
||||||
return script;
|
|
||||||
}),
|
|
||||||
run: jest.fn().mockImplementation(async (): Promise<string> => {
|
|
||||||
const os: string = process.env['RUNNER_OS'] || '';
|
|
||||||
const tool = await utils.scriptTool(os);
|
|
||||||
return tool + (await install.getScript(os));
|
|
||||||
})
|
|
||||||
}));
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Mock fetch.ts
|
|
||||||
*/
|
|
||||||
jest.mock('../src/fetch', () => ({
|
|
||||||
fetch: jest.fn().mockImplementation(() => {
|
|
||||||
return {
|
|
||||||
data: '{ "latest": "8.3", "lowest": "8.1", "highest": "8.3", "nightly": "8.4", "5.x": "5.6" }'
|
|
||||||
};
|
|
||||||
})
|
|
||||||
}));
|
|
||||||
|
|
||||||
describe('Install', () => {
|
|
||||||
it.each`
|
|
||||||
version | os | extension_csv | ini_file | ini_values_csv | coverage_driver | tools | output
|
|
||||||
${'7.3'} | ${'darwin'} | ${''} | ${'production'} | ${''} | ${''} | ${''} | ${'bash darwin.sh 7.3 production'}
|
|
||||||
${'7.3'} | ${'darwin'} | ${'a, b'} | ${'development'} | ${'a=b'} | ${'x'} | ${''} | ${'bash darwin.sh 7.3 development install extensions set coverage driver edit php.ini'}
|
|
||||||
${'7.4.1'} | ${'darwin'} | ${''} | ${'none'} | ${''} | ${''} | ${''} | ${'bash darwin.sh 7.4 none'}
|
|
||||||
${'8'} | ${'darwin'} | ${''} | ${''} | ${''} | ${''} | ${''} | ${'bash darwin.sh 8.0 production'}
|
|
||||||
${'8.0'} | ${'darwin'} | ${''} | ${'development'} | ${''} | ${''} | ${''} | ${'bash darwin.sh 8.0 development'}
|
|
||||||
${'8.1'} | ${'darwin'} | ${''} | ${'none'} | ${''} | ${''} | ${''} | ${'bash darwin.sh 8.1 none'}
|
|
||||||
${'7.3'} | ${'linux'} | ${''} | ${'invalid'} | ${''} | ${''} | ${''} | ${'bash linux.sh 7.3 production'}
|
|
||||||
${'7.3'} | ${'linux'} | ${'a, b'} | ${'development'} | ${'a=b'} | ${'x'} | ${'phpunit'} | ${'bash linux.sh 7.3 development install extensions add_tool set coverage driver edit php.ini'}
|
|
||||||
${'latest'} | ${'linux'} | ${''} | ${'none'} | ${''} | ${''} | ${''} | ${'bash linux.sh 8.3 none'}
|
|
||||||
${'lowest'} | ${'linux'} | ${''} | ${'none'} | ${''} | ${''} | ${''} | ${'bash linux.sh 8.1 none'}
|
|
||||||
${'highest'} | ${'linux'} | ${''} | ${'none'} | ${''} | ${''} | ${''} | ${'bash linux.sh 8.3 none'}
|
|
||||||
${'nightly'} | ${'linux'} | ${''} | ${'none'} | ${''} | ${''} | ${''} | ${'bash linux.sh 8.4 none'}
|
|
||||||
${'7.0'} | ${'win32'} | ${''} | ${'production'} | ${''} | ${''} | ${''} | ${'pwsh win32.ps1 7.0 production'}
|
|
||||||
${'7.3'} | ${'win32'} | ${''} | ${'development'} | ${''} | ${''} | ${''} | ${'pwsh win32.ps1 7.3 development'}
|
|
||||||
${'7.3'} | ${'win32'} | ${'a, b'} | ${'none'} | ${'a=b'} | ${'x'} | ${''} | ${'pwsh win32.ps1 7.3 none install extensions set coverage driver edit php.ini'}
|
|
||||||
`(
|
|
||||||
'Test install on $os for $version with extensions=$extension_csv, ini_values=$ini_values_csv, coverage_driver=$coverage_driver, tools=$tools',
|
|
||||||
async ({
|
|
||||||
version,
|
|
||||||
os,
|
|
||||||
extension_csv,
|
|
||||||
ini_file,
|
|
||||||
ini_values_csv,
|
|
||||||
coverage_driver,
|
|
||||||
tools,
|
|
||||||
output
|
|
||||||
}) => {
|
|
||||||
process.env['php-version'] = version.toString();
|
|
||||||
process.env['RUNNER_OS'] = os;
|
|
||||||
process.env['extensions'] = extension_csv;
|
|
||||||
process.env['ini-file'] = ini_file;
|
|
||||||
process.env['ini-values'] = ini_values_csv;
|
|
||||||
process.env['coverage'] = coverage_driver;
|
|
||||||
process.env['tools'] = tools;
|
|
||||||
expect(await install.run()).toBe(output);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
});
|
});
|
||||||
|
|||||||
@ -1,50 +0,0 @@
|
|||||||
import * as packagist from '../src/packagist';
|
|
||||||
import nock from 'nock';
|
|
||||||
|
|
||||||
describe('search function', () => {
|
|
||||||
const mockResponse = {
|
|
||||||
packages: {
|
|
||||||
'test-package': [
|
|
||||||
{
|
|
||||||
require: {
|
|
||||||
php: '8.0.0'
|
|
||||||
},
|
|
||||||
version: '1.0.0'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
version: '2.0.0'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
test('should return the version if matching php version is found', async () => {
|
|
||||||
nock('https://repo.packagist.org')
|
|
||||||
.get('/p2/test-package.json')
|
|
||||||
.reply(200, mockResponse);
|
|
||||||
const result = await packagist.search('test-package', '8.0');
|
|
||||||
expect(result).toBe('1.0.0');
|
|
||||||
});
|
|
||||||
|
|
||||||
test('should return null if no matching php version is found', async () => {
|
|
||||||
nock('https://repo.packagist.org')
|
|
||||||
.get('/p2/test-package.json')
|
|
||||||
.reply(200, mockResponse);
|
|
||||||
const result = await packagist.search('test-package', '5.6');
|
|
||||||
expect(result).toBeNull();
|
|
||||||
});
|
|
||||||
|
|
||||||
test('should return null if fetch fails', async () => {
|
|
||||||
nock('https://repo.packagist.org').get('/p2/test-package.json').reply(404);
|
|
||||||
const result = await packagist.search('test-package', '8.0');
|
|
||||||
expect(result).toBeNull();
|
|
||||||
});
|
|
||||||
|
|
||||||
test('should return null if the response is empty', async () => {
|
|
||||||
nock('https://repo.packagist.org')
|
|
||||||
.get('/p2/test-package.json')
|
|
||||||
.reply(200, {error: true, data: '[]'});
|
|
||||||
const result = await packagist.search('test-package', '8.0');
|
|
||||||
expect(result).toBeNull();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
@ -1,715 +0,0 @@
|
|||||||
import * as fs from 'fs';
|
|
||||||
import * as tools from '../src/tools';
|
|
||||||
import {ToolData, ToolInput} from '../src/tools';
|
|
||||||
|
|
||||||
function getData(data: Partial<ToolData>): ToolData {
|
|
||||||
const tool = data.tool || 'tool';
|
|
||||||
const version = data.version || '';
|
|
||||||
return {
|
|
||||||
tool,
|
|
||||||
version,
|
|
||||||
url: data.url || '',
|
|
||||||
domain: data.domain || 'https://example.com',
|
|
||||||
extension: data.extension || '.phar',
|
|
||||||
os: data.os || 'linux',
|
|
||||||
php_version: data.php_version || '7.4',
|
|
||||||
release: data.release || [tool, version].join(':'),
|
|
||||||
repository: data.repository || '',
|
|
||||||
scope: data.scope || 'global',
|
|
||||||
type: data.type || 'phar',
|
|
||||||
fetch_latest: data.fetch_latest || 'false',
|
|
||||||
version_parameter: data.version_parameter || '-V',
|
|
||||||
version_prefix: data.version_prefix || '',
|
|
||||||
github: data.github || 'https://github.com',
|
|
||||||
prefix: data.prefix || 'releases',
|
|
||||||
verb: data.verb || 'download',
|
|
||||||
packagist: data.packagist || data.repository || '',
|
|
||||||
function: data.function,
|
|
||||||
alias: data.alias,
|
|
||||||
uri: data.uri,
|
|
||||||
error: data.error
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Mock fetch.ts
|
|
||||||
*/
|
|
||||||
jest.mock('../src/fetch', () => ({
|
|
||||||
fetch: jest
|
|
||||||
.fn()
|
|
||||||
.mockImplementation(
|
|
||||||
async (url: string, token?: string): Promise<Record<string, string>> => {
|
|
||||||
if (url.includes('deployer')) {
|
|
||||||
return {
|
|
||||||
data: '[{"version": "1.2.3", "url": "https://deployer.org/releases/v1.2.3/deployer.phar"}]'
|
|
||||||
};
|
|
||||||
} else if (url.includes('atom') && !url.includes('no-')) {
|
|
||||||
return {
|
|
||||||
data: '"releases/tag/1.2.3", "releases/tag/3.2.1", "releases/tag/2.3.1"'
|
|
||||||
};
|
|
||||||
} else if (url.includes('no-data')) {
|
|
||||||
return {};
|
|
||||||
} else if (url.includes('no-release')) {
|
|
||||||
return {data: 'no-release'};
|
|
||||||
} else if (!token || token === 'valid_token') {
|
|
||||||
return {data: `[{"ref": "refs/tags/1.2.3", "url": "${url}"}]`};
|
|
||||||
} else if (token === 'beta_token') {
|
|
||||||
return {data: `[{"ref": "refs/tags/1.2.3beta1", "url": "${url}"}]`};
|
|
||||||
} else if (token === 'rc_token') {
|
|
||||||
return {
|
|
||||||
data: `[{"ref":"refs/tags/3.0.0RC1"},{"ref":"refs/tags/3.0.0RC2"}]`
|
|
||||||
};
|
|
||||||
} else if (token === 'non_semver_tags') {
|
|
||||||
return {
|
|
||||||
data: `[{"ref":"refs/tags/release-2025-09-18"},{"ref":"refs/tags/release-2025-09-17"}]`
|
|
||||||
};
|
|
||||||
} else if (token === 'undefined_ref') {
|
|
||||||
return {
|
|
||||||
data: `[{"url":"${url}"},{"ref":"refs/tags/v1.2.4","url":"${url}"}]`
|
|
||||||
};
|
|
||||||
} else if (token === 'multi_refs') {
|
|
||||||
return {
|
|
||||||
data: `[{"ref":"refs/tags/v1.2.3","url":"${url}"},{"ref":"refs/tags/1.2.4","url":"${url}"}]`
|
|
||||||
};
|
|
||||||
} else if (token === 'no_data') {
|
|
||||||
return {data: '[]'};
|
|
||||||
} else {
|
|
||||||
return {error: 'Invalid token'};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
)
|
|
||||||
}));
|
|
||||||
|
|
||||||
jest.mock('../src/packagist', () => ({
|
|
||||||
search: jest
|
|
||||||
.fn()
|
|
||||||
.mockImplementation(
|
|
||||||
async (
|
|
||||||
package_name: string,
|
|
||||||
php_version: string
|
|
||||||
): Promise<string | null> => {
|
|
||||||
if (package_name === 'phpunit/phpunit') {
|
|
||||||
return php_version + '.0';
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
)
|
|
||||||
}));
|
|
||||||
|
|
||||||
describe('Tools tests', () => {
|
|
||||||
it.each`
|
|
||||||
token | version
|
|
||||||
${'invalid_token'} | ${'1.2'}
|
|
||||||
${'valid_token'} | ${'1.2.3'}
|
|
||||||
${'beta_token'} | ${'1.2.3beta1'}
|
|
||||||
${'undefined_ref'} | ${'1.2.4'}
|
|
||||||
${'multi_refs'} | ${'1.2.4'}
|
|
||||||
${'non_semver_tags'} | ${'release-2025-09-18'}
|
|
||||||
${''} | ${'1.2.3'}
|
|
||||||
`('checking getSemverVersion: $token', async ({token, version}) => {
|
|
||||||
process.env['GITHUB_TOKEN'] = token;
|
|
||||||
expect(
|
|
||||||
await tools.getSemverVersion(getData({tool: 'tool', version: '1.2'}))
|
|
||||||
).toBe(version);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking getSemverVersion triggers ?? fallback via Map#get mock', async () => {
|
|
||||||
process.env['GITHUB_TOKEN'] = 'rc_token';
|
|
||||||
const spy = jest
|
|
||||||
.spyOn(Map.prototype as Map<string, string>, 'get')
|
|
||||||
.mockImplementation(function (
|
|
||||||
this: Map<string, string>,
|
|
||||||
key: string
|
|
||||||
): string | undefined {
|
|
||||||
if (key === '3.0.0-RC2') {
|
|
||||||
return undefined;
|
|
||||||
}
|
|
||||||
return Map.prototype.get.call(this, key);
|
|
||||||
});
|
|
||||||
const result = await tools.getSemverVersion(
|
|
||||||
getData({tool: 'tool', version: '3.0.0'})
|
|
||||||
);
|
|
||||||
expect(result).toBe('3.0.0-RC2');
|
|
||||||
spy.mockRestore();
|
|
||||||
});
|
|
||||||
|
|
||||||
it.each`
|
|
||||||
tool | fetch_latest | version
|
|
||||||
${'tool'} | ${'true'} | ${'3.2.1'}
|
|
||||||
${'tool-no-data'} | ${'true'} | ${'latest'}
|
|
||||||
${'tool-no-release'} | ${'true'} | ${'latest'}
|
|
||||||
${'tool'} | ${'false'} | ${'latest'}
|
|
||||||
`(
|
|
||||||
'checking getLatestVersion: $tool, $fetch_latest, $version',
|
|
||||||
async ({tool, fetch_latest, version}) => {
|
|
||||||
expect(
|
|
||||||
await tools.getLatestVersion(
|
|
||||||
getData({
|
|
||||||
tool: tool,
|
|
||||||
repository: 'user/' + tool,
|
|
||||||
fetch_latest: fetch_latest
|
|
||||||
})
|
|
||||||
)
|
|
||||||
).toBe(version);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
it('checking getLatestVersion with fetch_latest=true but no repository', async () => {
|
|
||||||
expect(
|
|
||||||
await tools.getLatestVersion(
|
|
||||||
getData({
|
|
||||||
tool: 'tool',
|
|
||||||
repository: '',
|
|
||||||
fetch_latest: 'true'
|
|
||||||
})
|
|
||||||
)
|
|
||||||
).toBe('latest');
|
|
||||||
});
|
|
||||||
|
|
||||||
it.each`
|
|
||||||
version | tool | type | expected
|
|
||||||
${'latest'} | ${'tool'} | ${'phar'} | ${'latest'}
|
|
||||||
${'1'} | ${'composer'} | ${'phar'} | ${'1'}
|
|
||||||
${'1.2'} | ${'tool'} | ${'composer'} | ${'1.2.*'}
|
|
||||||
${'^1.2.3'} | ${'tool'} | ${'phar'} | ${'1.2.3'}
|
|
||||||
${'>=1.2.3'} | ${'tool'} | ${'phar'} | ${'1.2.3'}
|
|
||||||
${'>1.2.3'} | ${'tool'} | ${'phar'} | ${'1.2.3'}
|
|
||||||
${'1.2.3-ALPHA'} | ${'tool'} | ${'phar'} | ${'1.2.3-ALPHA'}
|
|
||||||
${'1.2.3-alpha'} | ${'tool'} | ${'phar'} | ${'1.2.3-alpha'}
|
|
||||||
${'1.2.3-beta'} | ${'tool'} | ${'phar'} | ${'1.2.3-beta'}
|
|
||||||
${'1.2.3-rc'} | ${'tool'} | ${'phar'} | ${'1.2.3-rc'}
|
|
||||||
${'1.2.3-dev'} | ${'tool'} | ${'phar'} | ${'1.2.3-dev'}
|
|
||||||
${'1.2.3-alpha1'} | ${'tool'} | ${'phar'} | ${'1.2.3-alpha1'}
|
|
||||||
${'1.2.3-alpha.1'} | ${'tool'} | ${'phar'} | ${'1.2.3-alpha.1'}
|
|
||||||
`(
|
|
||||||
'checking getVersion: $version, $tool, $type',
|
|
||||||
async ({version, tool, type, expected}) => {
|
|
||||||
expect(
|
|
||||||
await tools.getVersion(
|
|
||||||
version,
|
|
||||||
getData({tool: tool, version: version, type: type})
|
|
||||||
)
|
|
||||||
).toBe(expected);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
it.each`
|
|
||||||
input | expected
|
|
||||||
${'tool'} | ${'tool'}
|
|
||||||
${'alias:1.2.3'} | ${'tool:1.2.3'}
|
|
||||||
${'tool:1.2.3'} | ${'tool:1.2.3'}
|
|
||||||
${'tool:^1.2.3'} | ${'tool:^1.2.3'}
|
|
||||||
${'tool:>=1.2.3'} | ${'tool:>=1.2.3'}
|
|
||||||
${'tool:>1.2.3'} | ${'tool:>1.2.3'}
|
|
||||||
${'tool:1.2.3-ALPHA'} | ${'tool:1.2.3-ALPHA'}
|
|
||||||
${'tool:1.2.3-beta'} | ${'tool:1.2.3-beta'}
|
|
||||||
${'tool:1.2.3-rc'} | ${'tool:1.2.3-rc'}
|
|
||||||
${'tool:1.2.3-dev'} | ${'tool:1.2.3-dev'}
|
|
||||||
${'tool:1.2.3-alpha1'} | ${'tool:1.2.3-alpha1'}
|
|
||||||
${'tool:1.2.3-alpha.1'} | ${'tool:1.2.3-alpha.1'}
|
|
||||||
${'user/tool:^1.2.3'} | ${'tool:^1.2.3'}
|
|
||||||
`('checking getRelease: $input', async ({input, expected}) => {
|
|
||||||
expect(
|
|
||||||
await tools.getRelease(input, getData({tool: 'tool', version: 'latest'}))
|
|
||||||
).toBe(expected);
|
|
||||||
});
|
|
||||||
|
|
||||||
it.each`
|
|
||||||
input_list | filtered_list
|
|
||||||
${'a, b'} | ${'composer, a, b'}
|
|
||||||
${'a, b, composer'} | ${'composer, a, b'}
|
|
||||||
${'a, b, composer:1.2.3'} | ${'composer:1.2.3, a, b'}
|
|
||||||
${'a, b, composer:v1.2.3'} | ${'composer:1.2.3, a, b'}
|
|
||||||
${'a, b, composer:snapshot'} | ${'composer:snapshot, a, b'}
|
|
||||||
${'a, b, composer:preview'} | ${'composer:preview, a, b'}
|
|
||||||
${'a, b, composer:1'} | ${'composer:1, a, b'}
|
|
||||||
${'a, b, composer:2'} | ${'composer:2, a, b'}
|
|
||||||
${'a, b, composer:v1'} | ${'composer:1, a, b'}
|
|
||||||
${'a, b, composer:v2'} | ${'composer:2, a, b'}
|
|
||||||
`('checking filterList $input_list', async ({input_list, filtered_list}) => {
|
|
||||||
expect(await tools.filterList(input_list.split(', '))).toStrictEqual(
|
|
||||||
filtered_list.split(', ')
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it.each`
|
|
||||||
version | version_prefix | url_suffix
|
|
||||||
${'latest'} | ${'v'} | ${'latest/download/tool.phar'}
|
|
||||||
${'1.2.3'} | ${'v'} | ${'download/v1.2.3/tool.phar'}
|
|
||||||
${'1.2.3'} | ${''} | ${'download/1.2.3/tool.phar'}
|
|
||||||
`(
|
|
||||||
'checking getUrl: $version_prefix$version',
|
|
||||||
async ({version, version_prefix, url_suffix}) => {
|
|
||||||
const data = getData({
|
|
||||||
tool: 'tool',
|
|
||||||
version: version,
|
|
||||||
version_prefix: version_prefix
|
|
||||||
});
|
|
||||||
expect(await tools.getUrl(data)).toContain(url_suffix);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
it('checking getUrl handles undefined version without double slash', async () => {
|
|
||||||
const data: ToolInput = {
|
|
||||||
...getData({
|
|
||||||
tool: 'cs2pr',
|
|
||||||
repository: 'staabm/annotate-pull-request-from-checkstyle',
|
|
||||||
domain: 'https://github.com'
|
|
||||||
}),
|
|
||||||
version: undefined
|
|
||||||
};
|
|
||||||
data.extension = '';
|
|
||||||
expect(await tools.getUrl(data)).toBe(
|
|
||||||
'https://github.com/staabm/annotate-pull-request-from-checkstyle/releases/latest/download/cs2pr'
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it.each`
|
|
||||||
version | version_prefix | url
|
|
||||||
${'latest'} | ${''} | ${'https://example.com/tool.phar'}
|
|
||||||
${'1.2.3'} | ${'v'} | ${'https://example.com/tool-v1.2.3.phar'}
|
|
||||||
`(
|
|
||||||
'checking getPharUrl: $version_prefix$version',
|
|
||||||
async ({version, version_prefix, url}) => {
|
|
||||||
const data = getData({
|
|
||||||
tool: 'tool',
|
|
||||||
version: version,
|
|
||||||
version_prefix: version_prefix
|
|
||||||
});
|
|
||||||
expect(await tools.getPharUrl(data)).toBe(url);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
it.each`
|
|
||||||
os | script
|
|
||||||
${'linux'} | ${'add_tool https://example.com/tool.phar tool "-v"'}
|
|
||||||
${'darwin'} | ${'add_tool https://example.com/tool.phar tool "-v"'}
|
|
||||||
${'win32'} | ${'Add-Tool https://example.com/tool.phar tool "-v"'}
|
|
||||||
${'openbsd'} | ${'Platform openbsd is not supported'}
|
|
||||||
`('checking addArchive: $os', async ({os, script}) => {
|
|
||||||
const data = getData({
|
|
||||||
tool: 'tool',
|
|
||||||
version: 'latest',
|
|
||||||
version_parameter: JSON.stringify('-v'),
|
|
||||||
os: os,
|
|
||||||
url: 'https://example.com/tool.phar'
|
|
||||||
});
|
|
||||||
expect(await tools.addArchive(data)).toContain(script);
|
|
||||||
});
|
|
||||||
|
|
||||||
it.each`
|
|
||||||
os | script | scope
|
|
||||||
${'linux'} | ${'add_composer_tool tool tool:1.2.3 user/ global'} | ${'global'}
|
|
||||||
${'darwin'} | ${'add_composer_tool tool tool:1.2.3 user/ scoped'} | ${'scoped'}
|
|
||||||
${'win32'} | ${'Add-ComposerTool tool tool:1.2.3 user/ scoped'} | ${'scoped'}
|
|
||||||
${'openbsd'} | ${'Platform openbsd is not supported'} | ${'global'}
|
|
||||||
`('checking addPackage: $os, $scope', async ({os, script, scope}) => {
|
|
||||||
const data = getData({
|
|
||||||
tool: 'tool',
|
|
||||||
version: '1.2.3',
|
|
||||||
repository: 'user/tool',
|
|
||||||
os: os,
|
|
||||||
scope: scope
|
|
||||||
});
|
|
||||||
data['release'] = [data['tool'], data['version']].join(':');
|
|
||||||
expect(await tools.addPackage(data)).toContain(script);
|
|
||||||
});
|
|
||||||
|
|
||||||
it.each`
|
|
||||||
version | php_version | os | script
|
|
||||||
${'latest'} | ${'8.0'} | ${'linux'} | ${'add_tool https://github.com/phar-io/phive/releases/download/3.2.1/phive-3.2.1.phar phive'}
|
|
||||||
${'1.2.3'} | ${'8.0'} | ${'darwin'} | ${'add_tool https://github.com/phar-io/phive/releases/download/1.2.3/phive-1.2.3.phar phive'}
|
|
||||||
${'1.2.3'} | ${'7.4'} | ${'win32'} | ${'Add-Tool https://github.com/phar-io/phive/releases/download/0.15.3/phive-0.15.3.phar phive'}
|
|
||||||
${'1.2.3'} | ${'7.2'} | ${'win32'} | ${'Add-Tool https://github.com/phar-io/phive/releases/download/0.14.5/phive-0.14.5.phar phive'}
|
|
||||||
${'1.2.3'} | ${'7.1'} | ${'win32'} | ${'Add-Tool https://github.com/phar-io/phive/releases/download/0.13.5/phive-0.13.5.phar phive'}
|
|
||||||
${'latest'} | ${'5.6'} | ${'win32'} | ${'Add-Tool https://github.com/phar-io/phive/releases/download/0.12.1/phive-0.12.1.phar phive'}
|
|
||||||
${'latest'} | ${'5.5'} | ${'win32'} | ${'Phive is not supported on PHP 5.5'}
|
|
||||||
`(
|
|
||||||
'checking addPhive: $version, $php_version, $os',
|
|
||||||
async ({version, php_version, os, script}) => {
|
|
||||||
const data = getData({
|
|
||||||
tool: 'phive',
|
|
||||||
repository: 'phar-io/phive',
|
|
||||||
version_parameter: 'status',
|
|
||||||
version: version,
|
|
||||||
php_version: php_version,
|
|
||||||
os: os
|
|
||||||
});
|
|
||||||
script = await tools.addPhive(data);
|
|
||||||
expect(script).toContain(script);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
it.each`
|
|
||||||
os | version | php_version | url
|
|
||||||
${'linux'} | ${'latest'} | ${'8.1'} | ${'https://get.blackfire.io/blackfire-player.phar'}
|
|
||||||
${'linux'} | ${'1.2.3'} | ${'7.4'} | ${'https://get.blackfire.io/blackfire-player-v1.2.3.phar'}
|
|
||||||
${'linux'} | ${'latest'} | ${'7.4'} | ${'https://get.blackfire.io/blackfire-player-v1.22.0.phar'}
|
|
||||||
${'linux'} | ${'latest'} | ${'5.5'} | ${'https://get.blackfire.io/blackfire-player-v1.9.3.phar'}
|
|
||||||
${'linux'} | ${'latest'} | ${'7.0'} | ${'https://get.blackfire.io/blackfire-player-v1.9.3.phar'}
|
|
||||||
${'win32'} | ${'latest'} | ${'7.0'} | ${'blackfire-player is not a windows tool'}
|
|
||||||
`(
|
|
||||||
'checking addBlackfirePlayer: $os, $version, $php_version',
|
|
||||||
async ({os, version, php_version, url}) => {
|
|
||||||
const data = getData({
|
|
||||||
os: os,
|
|
||||||
tool: 'blackfire-player',
|
|
||||||
domain: 'https://get.blackfire.io',
|
|
||||||
version_prefix: 'v',
|
|
||||||
version: version,
|
|
||||||
php_version: php_version
|
|
||||||
});
|
|
||||||
expect(await tools.addBlackfirePlayer(data)).toContain(url);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
it.each`
|
|
||||||
version | url
|
|
||||||
${'latest'} | ${'https://deployer.org/deployer.phar'}
|
|
||||||
${'1.2.3'} | ${'https://deployer.org/releases/v1.2.3/deployer.phar'}
|
|
||||||
${'3.2.1'} | ${'Version missing in deployer manifest'}
|
|
||||||
`('checking addDeployer: $version', async ({version, url}) => {
|
|
||||||
const data = getData({
|
|
||||||
tool: 'deployer',
|
|
||||||
domain: 'https://deployer.org',
|
|
||||||
version: version
|
|
||||||
});
|
|
||||||
expect(await tools.addDeployer(data)).toContain(url);
|
|
||||||
});
|
|
||||||
|
|
||||||
it.each`
|
|
||||||
version | php_version | no_tool_cache | cache_url | source_url
|
|
||||||
${'latest'} | ${'7.4'} | ${'true'} | ${'https://github.com/shivammathur/composer-cache/releases/latest/download/composer-7.4-stable.phar'} | ${'https://getcomposer.org/composer-stable.phar'}
|
|
||||||
${'stable'} | ${'7.4'} | ${'true'} | ${'https://github.com/shivammathur/composer-cache/releases/latest/download/composer-7.4-stable.phar'} | ${'https://getcomposer.org/composer-stable.phar'}
|
|
||||||
${'snapshot'} | ${'7.4'} | ${'true'} | ${'https://github.com/shivammathur/composer-cache/releases/latest/download/composer-7.4-snapshot.phar'} | ${'https://getcomposer.org/composer.phar'}
|
|
||||||
${'preview'} | ${'7.4'} | ${'true'} | ${'https://github.com/shivammathur/composer-cache/releases/latest/download/composer-7.4-preview.phar'} | ${'https://getcomposer.org/composer-preview.phar'}
|
|
||||||
${'1'} | ${'7.4'} | ${'false'} | ${'https://github.com/shivammathur/composer-cache/releases/latest/download/composer-7.4-1.phar'} | ${'https://getcomposer.org/composer-1.phar'}
|
|
||||||
${'2'} | ${'7.4'} | ${'false'} | ${'https://github.com/shivammathur/composer-cache/releases/latest/download/composer-7.4-2.phar'} | ${'https://getcomposer.org/composer-2.phar'}
|
|
||||||
${'latest'} | ${'7.4'} | ${'true'} | ${'https://dl.cloudsmith.io/public/shivammathur/composer-cache/raw/files/composer-7.4-stable.phar'} | ${'https://getcomposer.org/composer-stable.phar'}
|
|
||||||
${'stable'} | ${'7.4'} | ${'true'} | ${'https://dl.cloudsmith.io/public/shivammathur/composer-cache/raw/files/composer-7.4-stable.phar'} | ${'https://getcomposer.org/composer-stable.phar'}
|
|
||||||
${'snapshot'} | ${'7.4'} | ${'true'} | ${'https://dl.cloudsmith.io/public/shivammathur/composer-cache/raw/files/composer-7.4-snapshot.phar'} | ${'https://getcomposer.org/composer.phar'}
|
|
||||||
${'preview'} | ${'7.4'} | ${'true'} | ${'https://dl.cloudsmith.io/public/shivammathur/composer-cache/raw/files/composer-7.4-preview.phar'} | ${'https://getcomposer.org/composer-preview.phar'}
|
|
||||||
${'1'} | ${'7.4'} | ${'false'} | ${'https://dl.cloudsmith.io/public/shivammathur/composer-cache/raw/files/composer-7.4-1.phar'} | ${'https://getcomposer.org/composer-1.phar'}
|
|
||||||
${'2'} | ${'7.4'} | ${'false'} | ${'https://dl.cloudsmith.io/public/shivammathur/composer-cache/raw/files/composer-7.4-2.phar'} | ${'https://getcomposer.org/composer-2.phar'}
|
|
||||||
${'latest'} | ${'7.4'} | ${'true'} | ${'https://artifacts.setup-php.com/composer/composer-7.4-stable.phar'} | ${'https://getcomposer.org/composer-stable.phar'}
|
|
||||||
${'stable'} | ${'7.4'} | ${'true'} | ${'https://artifacts.setup-php.com/composer/composer-7.4-stable.phar'} | ${'https://getcomposer.org/composer-stable.phar'}
|
|
||||||
${'snapshot'} | ${'7.4'} | ${'true'} | ${'https://artifacts.setup-php.com/composer/composer-7.4-snapshot.phar'} | ${'https://getcomposer.org/composer.phar'}
|
|
||||||
${'preview'} | ${'7.4'} | ${'true'} | ${'https://artifacts.setup-php.com/composer/composer-7.4-preview.phar'} | ${'https://getcomposer.org/composer-preview.phar'}
|
|
||||||
${'1'} | ${'7.4'} | ${'false'} | ${'https://artifacts.setup-php.com/composer/composer-7.4-1.phar'} | ${'https://getcomposer.org/composer-1.phar'}
|
|
||||||
${'2'} | ${'7.4'} | ${'false'} | ${'https://artifacts.setup-php.com/composer/composer-7.4-2.phar'} | ${'https://getcomposer.org/composer-2.phar'}
|
|
||||||
${'latest'} | ${'7.1'} | ${'true'} | ${'https://github.com/shivammathur/composer-cache/releases/latest/download/composer-7.1-stable.phar'} | ${'https://getcomposer.org/download/latest-2.2.x/composer.phar'}
|
|
||||||
${'stable'} | ${'7.1'} | ${'true'} | ${'https://github.com/shivammathur/composer-cache/releases/latest/download/composer-7.1-stable.phar'} | ${'https://getcomposer.org/download/latest-2.2.x/composer.phar'}
|
|
||||||
${'snapshot'} | ${'7.1'} | ${'true'} | ${'https://github.com/shivammathur/composer-cache/releases/latest/download/composer-7.1-snapshot.phar'} | ${'https://getcomposer.org/download/latest-2.2.x/composer.phar'}
|
|
||||||
${'preview'} | ${'7.1'} | ${'true'} | ${'https://github.com/shivammathur/composer-cache/releases/latest/download/composer-7.1-preview.phar'} | ${'https://getcomposer.org/download/latest-2.2.x/composer.phar'}
|
|
||||||
${'1'} | ${'7.1'} | ${'false'} | ${'https://github.com/shivammathur/composer-cache/releases/latest/download/composer-7.1-1.phar'} | ${'https://getcomposer.org/composer-1.phar'}
|
|
||||||
${'2'} | ${'7.1'} | ${'false'} | ${'https://github.com/shivammathur/composer-cache/releases/latest/download/composer-7.1-2.phar'} | ${'https://getcomposer.org/download/latest-2.2.x/composer.phar'}
|
|
||||||
${'1.2.3'} | ${'7.4'} | ${'false'} | ${'https://github.com/composer/composer/releases/download/1.2.3/composer.phar'} | ${'https://getcomposer.org/download/1.2.3/composer.phar'}
|
|
||||||
${'1.2.3-RC1'} | ${'7.4'} | ${'false'} | ${'https://github.com/composer/composer/releases/download/1.2.3-RC1/composer.phar'} | ${'https://getcomposer.org/download/1.2.3-RC1/composer.phar'}
|
|
||||||
`(
|
|
||||||
'checking addComposer: $version, $php_version, $no_tool_cache',
|
|
||||||
async ({version, php_version, no_tool_cache, cache_url, source_url}) => {
|
|
||||||
const data = getData({
|
|
||||||
tool: 'composer',
|
|
||||||
php_version: php_version,
|
|
||||||
domain: 'https://getcomposer.org',
|
|
||||||
repository: 'composer/composer',
|
|
||||||
version: version
|
|
||||||
});
|
|
||||||
process.env['no_tools_cache'] = no_tool_cache;
|
|
||||||
expect(await tools.addComposer(data)).toContain(source_url);
|
|
||||||
if (no_tool_cache !== 'true') {
|
|
||||||
expect(await tools.addComposer(data)).toContain(cache_url);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
it.each`
|
|
||||||
version | uri
|
|
||||||
${'latest'} | ${'wp-cli/builds/blob/gh-pages/phar/wp-cli.phar?raw=true'}
|
|
||||||
${'1.2.3'} | ${'wp-cli/wp-cli/releases/download/v1.2.3/wp-cli-1.2.3.phar'}
|
|
||||||
`('checking addWPCLI: $version', async ({version, uri}) => {
|
|
||||||
const data = getData({
|
|
||||||
tool: 'wp-cli',
|
|
||||||
repository: 'wp-cli/wp-cli',
|
|
||||||
php_version: '7.4',
|
|
||||||
version_prefix: 'v',
|
|
||||||
version: version
|
|
||||||
});
|
|
||||||
expect(await tools.addWPCLI(data)).toContain(uri);
|
|
||||||
});
|
|
||||||
|
|
||||||
it.each`
|
|
||||||
tool | os | script
|
|
||||||
${'phpize'} | ${'linux'} | ${'add_devtools phpize'}
|
|
||||||
${'php-config'} | ${'linux'} | ${'add_devtools php-config'}
|
|
||||||
${'phpize'} | ${'darwin'} | ${'add_devtools phpize'}
|
|
||||||
${'php-config'} | ${'darwin'} | ${'add_devtools php-config'}
|
|
||||||
${'phpize'} | ${'win32'} | ${'Add-Log "$tick" "phpize" "phpize is not a windows tool"'}
|
|
||||||
${'php-config'} | ${'win32'} | ${'Add-Log "$tick" "php-config" "php-config is not a windows tool"'}
|
|
||||||
${'phpize'} | ${'openbsd'} | ${'Platform openbsd is not supported'}
|
|
||||||
`('checking addDevTools: $tool, $os', async ({tool, os, script}) => {
|
|
||||||
const data = getData({
|
|
||||||
version: '7.4',
|
|
||||||
tool: tool,
|
|
||||||
os: os
|
|
||||||
});
|
|
||||||
expect(await tools.addDevTools(data)).toContain(script);
|
|
||||||
});
|
|
||||||
|
|
||||||
it.each([
|
|
||||||
[
|
|
||||||
'blackfire, blackfire-player, box, churn, cs2pr, flex, grpc_php_plugin, mago, name-collision-detector, parallel-lint, php-cs-fixer, php-scoper, phpDocumentor, phplint, phpstan, phpunit, pecl, phing, phinx, phinx:1.2.3, phive, phpunit-bridge, phpunit-polyfills, pint, php-config, phpize, protoc, symfony, vapor, wp, pie',
|
|
||||||
[
|
|
||||||
'add_tool https://github.com/shivammathur/composer-cache/releases/latest/download/composer-7.4-stable.phar,https://artifacts.setup-php.com/composer/composer-7.4-stable.phar,https://dl.cloudsmith.io/public/shivammathur/composer-cache/raw/files/composer-7.4-stable.phar,https://getcomposer.org/composer-stable.phar composer',
|
|
||||||
'add_blackfire',
|
|
||||||
'add_tool https://get.blackfire.io/blackfire-player-v1.22.0.phar blackfire-player "-V"',
|
|
||||||
'add_tool https://github.com/box-project/box/releases/latest/download/box.phar box "--version"',
|
|
||||||
'add_tool https://github.com/bmitch/churn-php/releases/latest/download/churn.phar churn "-V"',
|
|
||||||
'add_tool https://github.com/staabm/annotate-pull-request-from-checkstyle/releases/latest/download/cs2pr cs2pr "-V"',
|
|
||||||
'add_composer_tool flex flex symfony/ global',
|
|
||||||
'add_grpc_php_plugin latest',
|
|
||||||
'add_mago',
|
|
||||||
'add_composer_tool name-collision-detector name-collision-detector shipmonk/ scoped',
|
|
||||||
'add_tool https://github.com/php-parallel-lint/PHP-Parallel-Lint/releases/latest/download/parallel-lint.phar parallel-lint "--version"',
|
|
||||||
'add_tool https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/releases/download/v3.2.1/php-cs-fixer.phar php-cs-fixer "-V"',
|
|
||||||
'add_tool https://github.com/humbug/php-scoper/releases/latest/download/php-scoper.phar php-scoper "--version"',
|
|
||||||
'add_tool https://github.com/phpDocumentor/phpDocumentor/releases/latest/download/phpDocumentor.phar phpDocumentor "--version"',
|
|
||||||
'add_composer_tool phplint phplint overtrue/',
|
|
||||||
'add_tool https://github.com/phpstan/phpstan/releases/latest/download/phpstan.phar phpstan "-V"',
|
|
||||||
'add_tool https://phar.phpunit.de/phpunit-7.4.0.phar,https://phar.phpunit.de/phpunit-7.phar phpunit "--version"',
|
|
||||||
'add_pecl',
|
|
||||||
'add_tool https://www.phing.info/get/phing-latest.phar phing "-v"',
|
|
||||||
'add_composer_tool phinx phinx robmorgan/ scoped',
|
|
||||||
'add_composer_tool phinx phinx:1.2.3 robmorgan/ scoped',
|
|
||||||
'add_tool https://github.com/phar-io/phive/releases/download/0.15.3/phive-0.15.3.phar phive "status"',
|
|
||||||
'add_composer_tool phpunit-bridge phpunit-bridge symfony/ global',
|
|
||||||
'add_composer_tool phpunit-polyfills phpunit-polyfills yoast/ global',
|
|
||||||
'add_tool https://github.com/laravel/pint/releases/latest/download/pint.phar pint "-V"',
|
|
||||||
'add_devtools php-config',
|
|
||||||
'add_devtools phpize',
|
|
||||||
'add_protoc latest',
|
|
||||||
'add_symfony latest',
|
|
||||||
'add_composer_tool vapor-cli vapor-cli laravel/ scoped',
|
|
||||||
'add_tool https://github.com/wp-cli/builds/blob/gh-pages/phar/wp-cli.phar?raw=true wp-cli "--version"',
|
|
||||||
'add_tool https://github.com/php/pie/releases/latest/download/pie.phar pie "-V"'
|
|
||||||
]
|
|
||||||
]
|
|
||||||
])('checking addTools on linux', async (tools_csv, scripts) => {
|
|
||||||
const expected = await tools.addTools(tools_csv, '7.4', 'linux');
|
|
||||||
scripts.forEach(script => {
|
|
||||||
expect(expected).toContain(script);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
it.each([
|
|
||||||
[
|
|
||||||
'backward-compatibility-check, behat, blackfire, blackfire-player, churn, composer-dependency-analyser, composer-normalize, composer-require-checker, composer-unused, cs2pr:1.2.3, ecs, flex, grpc_php_plugin:1.2.3, infection, mago:0.26.1, name-collision-detector, phan, phan:1.2.3, phing:1.2.3, phinx, phive:1.2.3, php-config, phpcbf, phpcpd, phpcs, phpdoc, phpize, phpmd, phpspec, phpunit-bridge:5.6, phpunit-polyfills:1.0.1, protoc:v1.2.3, psalm, rector, symfony-cli, vapor-cli, wp-cli, pie',
|
|
||||||
[
|
|
||||||
'add_tool https://github.com/shivammathur/composer-cache/releases/latest/download/composer-7.4-stable.phar,https://artifacts.setup-php.com/composer/composer-7.4-stable.phar,https://dl.cloudsmith.io/public/shivammathur/composer-cache/raw/files/composer-7.4-stable.phar,https://getcomposer.org/composer-stable.phar composer',
|
|
||||||
'add_composer_tool behat behat behat/ scoped',
|
|
||||||
'add_blackfire',
|
|
||||||
'add_tool https://get.blackfire.io/blackfire-player-v1.22.0.phar blackfire-player "-V"',
|
|
||||||
'add_tool https://github.com/bmitch/churn-php/releases/latest/download/churn.phar churn "-V"',
|
|
||||||
'add_tool https://github.com/ergebnis/composer-normalize/releases/latest/download/composer-normalize.phar composer-normalize "diagnose"',
|
|
||||||
'add_composer_tool composer-dependency-analyser composer-dependency-analyser shipmonk/ scoped',
|
|
||||||
'add_composer_tool composer-require-checker composer-require-checker maglnet/ scoped',
|
|
||||||
'add_tool https://github.com/composer-unused/composer-unused/releases/latest/download/composer-unused.phar composer-unused "-V"',
|
|
||||||
'add_tool https://github.com/staabm/annotate-pull-request-from-checkstyle/releases/download/1.2.3/cs2pr cs2pr "-V"',
|
|
||||||
'add_composer_tool flex flex symfony/ global',
|
|
||||||
'add_grpc_php_plugin 1.2.3',
|
|
||||||
'add_tool https://github.com/infection/infection/releases/latest/download/infection.phar infection "-V"',
|
|
||||||
'add_mago 0.26.1',
|
|
||||||
'add_composer_tool name-collision-detector name-collision-detector shipmonk/ scoped',
|
|
||||||
'add_tool https://github.com/phan/phan/releases/latest/download/phan.phar phan "-v"',
|
|
||||||
'add_tool https://github.com/phan/phan/releases/download/1.2.3/phan.phar phan "-v"',
|
|
||||||
'add_tool https://www.phing.info/get/phing-1.2.3.phar,https://github.com/phingofficial/phing/releases/download/1.2.3/phing-1.2.3.phar phing "-v"',
|
|
||||||
'add_composer_tool phinx phinx robmorgan/ scoped',
|
|
||||||
'add_tool https://github.com/phar-io/phive/releases/download/0.15.3/phive-0.15.3.phar phive',
|
|
||||||
'add_devtools php-config',
|
|
||||||
'add_tool https://github.com/PHPCSStandards/PHP_CodeSniffer/releases/latest/download/phpcbf.phar phpcbf "--version"',
|
|
||||||
'add_tool https://phar.phpunit.de/phpcpd.phar phpcpd "--version"',
|
|
||||||
'add_tool https://github.com/PHPCSStandards/PHP_CodeSniffer/releases/latest/download/phpcs.phar phpcs "--version"',
|
|
||||||
'add_tool https://github.com/phpDocumentor/phpDocumentor/releases/latest/download/phpDocumentor.phar phpDocumentor "--version"',
|
|
||||||
'add_devtools phpize',
|
|
||||||
'add_tool https://github.com/phpmd/phpmd/releases/latest/download/phpmd.phar phpmd "--version"',
|
|
||||||
'add_tool https://github.com/phpspec/phpspec/releases/latest/download/phpspec.phar phpspec "-V"',
|
|
||||||
'add_composer_tool phpunit-bridge phpunit-bridge:5.6.* symfony/ global',
|
|
||||||
'add_composer_tool phpunit-polyfills phpunit-polyfills:1.0.1 yoast/ global',
|
|
||||||
'add_protoc 1.2.3',
|
|
||||||
'add_tool https://github.com/vimeo/psalm/releases/latest/download/psalm.phar psalm "-v"',
|
|
||||||
'add_composer_tool rector rector rector/ scoped',
|
|
||||||
'add_composer_tool backward-compatibility-check backward-compatibility-check roave/ scoped',
|
|
||||||
'add_symfony latest',
|
|
||||||
'add_composer_tool vapor-cli vapor-cli laravel/ scoped',
|
|
||||||
'add_tool https://github.com/wp-cli/builds/blob/gh-pages/phar/wp-cli.phar?raw=true wp-cli "--version"',
|
|
||||||
'add_composer_tool easy-coding-standard easy-coding-standard symplify/ scoped',
|
|
||||||
'add_tool https://github.com/php/pie/releases/latest/download/pie.phar pie "-V"'
|
|
||||||
]
|
|
||||||
]
|
|
||||||
])('checking addTools on darwin', async (tools_csv, scripts) => {
|
|
||||||
const expected = await tools.addTools(tools_csv, '7.4', 'darwin');
|
|
||||||
scripts.forEach(script => {
|
|
||||||
expect(expected).toContain(script);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
it.each([
|
|
||||||
[
|
|
||||||
'blackfire, blackfire-player:1.2.3, cs2pr, churn, deployer, does_not_exist, flex, mago, name-collision-detector, phinx, phive:0.13.2, php-config, phpize, phpmd, simple-phpunit, symfony, wp, pie',
|
|
||||||
[
|
|
||||||
'Add-Tool https://github.com/shivammathur/composer-cache/releases/latest/download/composer-7.4-stable.phar,https://artifacts.setup-php.com/composer/composer-7.4-stable.phar,https://dl.cloudsmith.io/public/shivammathur/composer-cache/raw/files/composer-7.4-stable.phar,https://getcomposer.org/composer-stable.phar composer',
|
|
||||||
'Add-Blackfire',
|
|
||||||
'blackfire-player is not a windows tool',
|
|
||||||
'Add-Tool https://github.com/staabm/annotate-pull-request-from-checkstyle/releases/latest/download/cs2pr cs2pr "-V"',
|
|
||||||
'Add-Tool https://github.com/bmitch/churn-php/releases/latest/download/churn.phar churn "-V"',
|
|
||||||
'Add-Tool https://deployer.org/deployer.phar deployer "-V"',
|
|
||||||
'Tool does_not_exist is not supported',
|
|
||||||
'Add-ComposerTool flex flex symfony/ global',
|
|
||||||
'Add-Mago',
|
|
||||||
'Add-ComposerTool name-collision-detector name-collision-detector shipmonk/ scoped',
|
|
||||||
'Add-ComposerTool phinx phinx robmorgan/ scoped',
|
|
||||||
'Add-Tool https://github.com/phar-io/phive/releases/download/0.15.3/phive-0.15.3.phar phive "status"',
|
|
||||||
'php-config is not a windows tool',
|
|
||||||
'phpize is not a windows tool',
|
|
||||||
'Add-Tool https://github.com/phpmd/phpmd/releases/latest/download/phpmd.phar phpmd "--version"',
|
|
||||||
'Add-ComposerTool phpunit-bridge phpunit-bridge symfony/ global',
|
|
||||||
'Add-Symfony',
|
|
||||||
'Add-Tool https://github.com/wp-cli/builds/blob/gh-pages/phar/wp-cli.phar?raw=true wp-cli "--version"',
|
|
||||||
'Add-Tool https://github.com/php/pie/releases/latest/download/pie.phar pie "-V"'
|
|
||||||
]
|
|
||||||
]
|
|
||||||
])('checking addTools on Windows', async (tools_csv, scripts) => {
|
|
||||||
const expected = await tools.addTools(tools_csv, '7.4', 'win32');
|
|
||||||
scripts.forEach(script => {
|
|
||||||
expect(expected).toContain(script);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
it.each([
|
|
||||||
[
|
|
||||||
'composer:v1, codeception/codeception, prestissimo, hirak/prestissimo, composer-prefetcher, narrowspark/automatic-composer-prefetcher, phinx: 1.2, robmorgan/phinx: ^1.2, user/tool:1.2.3, user/tool:~1.2',
|
|
||||||
[
|
|
||||||
'Add-Tool https://github.com/shivammathur/composer-cache/releases/latest/download/composer-7.4-1.phar,https://artifacts.setup-php.com/composer/composer-7.4-1.phar,https://dl.cloudsmith.io/public/shivammathur/composer-cache/raw/files/composer-7.4-1.phar,https://getcomposer.org/composer-1.phar composer',
|
|
||||||
'Add-ComposerTool codeception codeception codeception/ global',
|
|
||||||
'Add-ComposerTool prestissimo prestissimo hirak/ global',
|
|
||||||
'Add-ComposerTool automatic-composer-prefetcher automatic-composer-prefetcher narrowspark/ global',
|
|
||||||
'Add-ComposerTool phinx phinx:1.2.* robmorgan/ scoped',
|
|
||||||
'Add-ComposerTool phinx phinx:^1.2 robmorgan/ global',
|
|
||||||
'Add-ComposerTool tool tool:1.2.3 user/ global',
|
|
||||||
'Add-ComposerTool tool tool:~1.2 user/ global'
|
|
||||||
]
|
|
||||||
]
|
|
||||||
])(
|
|
||||||
'checking addTools with composer tool using user/tool as input',
|
|
||||||
async (tools_csv, scripts) => {
|
|
||||||
const expected = await tools.addTools(tools_csv, '7.4', 'win32');
|
|
||||||
scripts.forEach(script => {
|
|
||||||
expect(expected).toContain(script);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
it.each`
|
|
||||||
version | os | uri
|
|
||||||
${'latest'} | ${'linux'} | ${'releases/latest/download/castor.linux-amd64.phar'}
|
|
||||||
${'0.5.1'} | ${'linux'} | ${'releases/download/v0.5.1/castor.linux-amd64.phar'}
|
|
||||||
${'latest'} | ${'darwin'} | ${'releases/latest/download/castor.darwin-amd64.phar'}
|
|
||||||
${'0.5.1'} | ${'darwin'} | ${'releases/download/v0.5.1/castor.darwin-amd64.phar'}
|
|
||||||
${'latest'} | ${'win32'} | ${'releases/latest/download/castor.windows-amd64.phar'}
|
|
||||||
${'0.5.1'} | ${'win32'} | ${'releases/download/v0.5.1/castor.windows-amd64.phar castor -V'}
|
|
||||||
${'latest'} | ${'openbsd'} | ${'Platform openbsd is not supported'}
|
|
||||||
`('checking addCastor: $version, $os', async ({version, os, uri}) => {
|
|
||||||
const data = getData({
|
|
||||||
tool: 'castor',
|
|
||||||
php_version: '8.1',
|
|
||||||
version_prefix: 'v',
|
|
||||||
version: version,
|
|
||||||
os: os
|
|
||||||
});
|
|
||||||
if (os === 'win32' && version === '0.5.1') {
|
|
||||||
fs.writeFileSync('castor.php', '');
|
|
||||||
expect(await tools.addCastor(data)).toContain(uri);
|
|
||||||
fs.unlinkSync('castor.php');
|
|
||||||
} else {
|
|
||||||
expect(await tools.addCastor(data)).toContain(uri);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
it.each`
|
|
||||||
tools_csv | script
|
|
||||||
${'none'} | ${''}
|
|
||||||
${'none, phpunit'} | ${'\nstep_log "Setup Tools"\nadd_tool https://github.com/shivammathur/composer-cache/releases/latest/download/composer-7.4-stable.phar,https://artifacts.setup-php.com/composer/composer-7.4-stable.phar,https://dl.cloudsmith.io/public/shivammathur/composer-cache/raw/files/composer-7.4-stable.phar,https://getcomposer.org/composer-stable.phar composer latest\n\nadd_tool https://phar.phpunit.de/phpunit-7.4.0.phar,https://phar.phpunit.de/phpunit-7.phar phpunit "--version"'}
|
|
||||||
${'composer:preview'} | ${'add_tool https://github.com/shivammathur/composer-cache/releases/latest/download/composer-7.4-preview.phar,https://artifacts.setup-php.com/composer/composer-7.4-preview.phar,https://dl.cloudsmith.io/public/shivammathur/composer-cache/raw/files/composer-7.4-preview.phar,https://getcomposer.org/composer-preview.phar composer preview'}
|
|
||||||
${'composer, composer:v1'} | ${'add_tool https://github.com/shivammathur/composer-cache/releases/latest/download/composer-7.4-1.phar,https://artifacts.setup-php.com/composer/composer-7.4-1.phar,https://dl.cloudsmith.io/public/shivammathur/composer-cache/raw/files/composer-7.4-1.phar,https://getcomposer.org/composer-1.phar composer'}
|
|
||||||
${'composer:v1, composer:preview, composer:snapshot'} | ${'add_tool https://github.com/shivammathur/composer-cache/releases/latest/download/composer-7.4-snapshot.phar,https://artifacts.setup-php.com/composer/composer-7.4-snapshot.phar,https://dl.cloudsmith.io/public/shivammathur/composer-cache/raw/files/composer-7.4-snapshot.phar,https://getcomposer.org/composer.phar composer snapshot'}
|
|
||||||
`('checking composer setup: $tools_csv', async ({tools_csv, script}) => {
|
|
||||||
expect(await tools.addTools(tools_csv, '7.4', 'linux')).toContain(script);
|
|
||||||
});
|
|
||||||
|
|
||||||
it.each`
|
|
||||||
tools_csv | token | script
|
|
||||||
${'cs2pr:1.2'} | ${'invalid_token'} | ${'add_log "$cross" "cs2pr" "Invalid token"'}
|
|
||||||
${'phpunit:1.2'} | ${'invalid_token'} | ${'add_log "$cross" "phpunit" "Invalid token"'}
|
|
||||||
${'phpunit:0.1'} | ${'no_data'} | ${'add_log "$cross" "phpunit" "No version found with prefix 0.1."'}
|
|
||||||
`('checking error: $tools_csv', async ({tools_csv, token, script}) => {
|
|
||||||
process.env['GITHUB_TOKEN'] = token;
|
|
||||||
expect(await tools.addTools(tools_csv, '7.4', 'linux')).toContain(script);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking error when custom-function tool is missing function field', async () => {
|
|
||||||
const brokenToolsJson = JSON.stringify({
|
|
||||||
composer: {
|
|
||||||
type: 'custom-function',
|
|
||||||
domain: 'https://getcomposer.org',
|
|
||||||
repository: 'composer/composer',
|
|
||||||
function: 'composer'
|
|
||||||
},
|
|
||||||
'broken-tool': {
|
|
||||||
type: 'custom-function'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
let result: string = '';
|
|
||||||
await jest.isolateModulesAsync(async () => {
|
|
||||||
jest.doMock('fs', () => ({
|
|
||||||
...jest.requireActual('fs'),
|
|
||||||
readFileSync: (
|
|
||||||
filePath: fs.PathOrFileDescriptor,
|
|
||||||
options?: unknown
|
|
||||||
) => {
|
|
||||||
if (String(filePath).includes('tools.json')) {
|
|
||||||
return brokenToolsJson;
|
|
||||||
}
|
|
||||||
return (jest.requireActual('fs') as typeof fs).readFileSync(
|
|
||||||
filePath,
|
|
||||||
options as fs.ObjectEncodingOptions & {flag?: string}
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}));
|
|
||||||
const isolatedTools = await import('../src/tools');
|
|
||||||
result = await isolatedTools.addTools('broken-tool', '7.4', 'linux');
|
|
||||||
});
|
|
||||||
|
|
||||||
expect(result).toContain(
|
|
||||||
'add_log "$cross" "broken-tool" "broken-tool has no function defined. Please report this issue."'
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it.each`
|
|
||||||
tools_csv | php_version | resolved
|
|
||||||
${'phpunit'} | ${'8.2'} | ${'/phpunit-8.2.0.phar'}
|
|
||||||
${'phpunit'} | ${'8.1'} | ${'/phpunit-8.1.0.phar'}
|
|
||||||
${'phpunit'} | ${'8.0'} | ${'/phpunit-8.0.0.phar'}
|
|
||||||
${'phpunit'} | ${'7.3'} | ${'/phpunit-7.3.0.phar'}
|
|
||||||
${'phpunit'} | ${'7.2'} | ${'/phpunit-7.2.0.phar'}
|
|
||||||
${'phpunit'} | ${'7.1'} | ${'/phpunit-7.1.0.phar'}
|
|
||||||
${'phpunit'} | ${'7.0'} | ${'/phpunit-7.0.0.phar'}
|
|
||||||
`(
|
|
||||||
'checking error: $tools_csv',
|
|
||||||
async ({tools_csv, php_version, resolved}) => {
|
|
||||||
expect(await tools.addTools(tools_csv, php_version, 'linux')).toContain(
|
|
||||||
resolved
|
|
||||||
);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
});
|
|
||||||
@ -1,319 +0,0 @@
|
|||||||
import fs from 'fs';
|
|
||||||
import * as path from 'path';
|
|
||||||
import * as utils from '../src/utils';
|
|
||||||
import * as fetchModule from '../src/fetch';
|
|
||||||
|
|
||||||
describe('Utils tests', () => {
|
|
||||||
it('checking readEnv', async () => {
|
|
||||||
process.env['test'] = 'setup-php';
|
|
||||||
process.env['test-hyphen'] = 'setup-php';
|
|
||||||
expect(await utils.readEnv('test')).toBe('setup-php');
|
|
||||||
expect(await utils.readEnv('TEST')).toBe('setup-php');
|
|
||||||
expect(await utils.readEnv('test_hyphen')).toBe('setup-php');
|
|
||||||
expect(await utils.readEnv('TEST_HYPHEN')).toBe('setup-php');
|
|
||||||
expect(await utils.readEnv('undefined')).toBe('');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking getInput', async () => {
|
|
||||||
process.env['test'] = 'setup-php';
|
|
||||||
process.env['INPUT_SETUP-PHP'] = 'setup-php';
|
|
||||||
expect(await utils.getInput('test', false)).toBe('setup-php');
|
|
||||||
expect(await utils.getInput('setup-php', false)).toBe('setup-php');
|
|
||||||
expect(await utils.getInput('DoesNotExist', false)).toBe('');
|
|
||||||
await expect(async () => {
|
|
||||||
await utils.getInput('DoesNotExist', true);
|
|
||||||
}).rejects.toThrow('Input required and not supplied: DoesNotExist');
|
|
||||||
delete process.env['INPUT_SETUP-PHP'];
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking getManifestURL', async () => {
|
|
||||||
for (const url of await utils.getManifestURLS()) {
|
|
||||||
expect(url).toContain('php-versions.json');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking parseVersion', async () => {
|
|
||||||
const fetchSpy = jest
|
|
||||||
.spyOn(fetchModule, 'fetch')
|
|
||||||
.mockResolvedValue({data: '{ "latest": "8.1", "5.x": "5.6" }'});
|
|
||||||
expect(await utils.parseVersion('latest')).toBe('8.1');
|
|
||||||
expect(await utils.parseVersion('7')).toBe('7.0');
|
|
||||||
expect(await utils.parseVersion('7.4')).toBe('7.4');
|
|
||||||
expect(await utils.parseVersion('5.x')).toBe('5.6');
|
|
||||||
expect(await utils.parseVersion('4.x')).toBe(undefined);
|
|
||||||
|
|
||||||
fetchSpy.mockReset();
|
|
||||||
fetchSpy.mockResolvedValueOnce({}).mockResolvedValueOnce({});
|
|
||||||
await expect(utils.parseVersion('latest')).rejects.toThrow(
|
|
||||||
'Could not fetch the PHP version manifest.'
|
|
||||||
);
|
|
||||||
expect(fetchSpy).toHaveBeenCalledTimes(2);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking parseIniFile', async () => {
|
|
||||||
expect(await utils.parseIniFile('production')).toBe('production');
|
|
||||||
expect(await utils.parseIniFile('development')).toBe('development');
|
|
||||||
expect(await utils.parseIniFile('none')).toBe('none');
|
|
||||||
expect(await utils.parseIniFile('php.ini-production')).toBe('production');
|
|
||||||
expect(await utils.parseIniFile('php.ini-development')).toBe('development');
|
|
||||||
expect(await utils.parseIniFile('invalid')).toBe('production');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking asyncForEach', async () => {
|
|
||||||
const array: Array<string> = ['a', 'b', 'c'];
|
|
||||||
let concat = '';
|
|
||||||
await utils.asyncForEach(
|
|
||||||
array,
|
|
||||||
async function (str: string): Promise<void> {
|
|
||||||
concat += str;
|
|
||||||
}
|
|
||||||
);
|
|
||||||
expect(concat).toBe('abc');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking asyncForEach', async () => {
|
|
||||||
expect(await utils.color('error')).toBe('31');
|
|
||||||
expect(await utils.color('success')).toBe('32');
|
|
||||||
expect(await utils.color('any')).toBe('32');
|
|
||||||
expect(await utils.color('warning')).toBe('33');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking extensionArray', async () => {
|
|
||||||
expect(
|
|
||||||
await utils.extensionArray('a, :b, php_c, none, php-d, Zend e, :Zend f')
|
|
||||||
).toEqual(['none', 'a', ':b', 'c', 'd', 'e', ':f']);
|
|
||||||
|
|
||||||
expect(await utils.extensionArray('')).toEqual([]);
|
|
||||||
expect(await utils.extensionArray(' ')).toEqual([]);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking INIArray', async () => {
|
|
||||||
expect(await utils.CSVArray('a=1, b=2, c=3')).toEqual([
|
|
||||||
'a=1',
|
|
||||||
'b=2',
|
|
||||||
'c=3'
|
|
||||||
]);
|
|
||||||
expect(await utils.CSVArray('\'a=1,2\', "b=3, 4", c=5, d=~e~')).toEqual([
|
|
||||||
'a=1,2',
|
|
||||||
'b=3, 4',
|
|
||||||
'c=5',
|
|
||||||
"d='~e~'"
|
|
||||||
]);
|
|
||||||
expect(await utils.CSVArray('a=\'1,2\', b="3, 4", c=5')).toEqual([
|
|
||||||
'a=1,2',
|
|
||||||
'b=3, 4',
|
|
||||||
'c=5'
|
|
||||||
]);
|
|
||||||
expect(
|
|
||||||
await utils.CSVArray('a=E_ALL, b=E_ALL & ~ E_ALL, c="E_ALL", d=\'E_ALL\'')
|
|
||||||
).toEqual(['a=E_ALL', 'b=E_ALL & ~ E_ALL', 'c=E_ALL', 'd=E_ALL']);
|
|
||||||
expect(
|
|
||||||
await utils.CSVArray('a="b=c;d=e", b=\'c=d,e\', c="g=h,i=j", d=g=h, a===')
|
|
||||||
).toEqual(["a='b=c;d=e'", "b='c=d,e'", "c='g=h,i=j'", "d='g=h'", "a='=='"]);
|
|
||||||
expect(await utils.CSVArray('')).toEqual([]);
|
|
||||||
expect(await utils.CSVArray(' ')).toEqual([]);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking log', async () => {
|
|
||||||
const message = 'Test message';
|
|
||||||
|
|
||||||
let warning_log: string = await utils.log(message, 'win32', 'warning');
|
|
||||||
expect(warning_log).toEqual('printf "\\033[33;1m' + message + ' \\033[0m"');
|
|
||||||
warning_log = await utils.log(message, 'linux', 'warning');
|
|
||||||
expect(warning_log).toEqual('echo "\\033[33;1m' + message + '\\033[0m"');
|
|
||||||
warning_log = await utils.log(message, 'darwin', 'warning');
|
|
||||||
expect(warning_log).toEqual('echo "\\033[33;1m' + message + '\\033[0m"');
|
|
||||||
|
|
||||||
let error_log: string = await utils.log(message, 'win32', 'error');
|
|
||||||
expect(error_log).toEqual('printf "\\033[31;1m' + message + ' \\033[0m"');
|
|
||||||
error_log = await utils.log(message, 'linux', 'error');
|
|
||||||
expect(error_log).toEqual('echo "\\033[31;1m' + message + '\\033[0m"');
|
|
||||||
error_log = await utils.log(message, 'darwin', 'error');
|
|
||||||
expect(error_log).toEqual('echo "\\033[31;1m' + message + '\\033[0m"');
|
|
||||||
|
|
||||||
let success_log: string = await utils.log(message, 'win32', 'success');
|
|
||||||
expect(success_log).toEqual('printf "\\033[32;1m' + message + ' \\033[0m"');
|
|
||||||
success_log = await utils.log(message, 'linux', 'success');
|
|
||||||
expect(success_log).toEqual('echo "\\033[32;1m' + message + '\\033[0m"');
|
|
||||||
success_log = await utils.log(message, 'darwin', 'success');
|
|
||||||
expect(success_log).toEqual('echo "\\033[32;1m' + message + '\\033[0m"');
|
|
||||||
|
|
||||||
let step_log: string = await utils.stepLog(message, 'win32');
|
|
||||||
expect(step_log).toEqual('Step-Log "Test message"');
|
|
||||||
step_log = await utils.stepLog(message, 'linux');
|
|
||||||
expect(step_log).toEqual('step_log "Test message"');
|
|
||||||
step_log = await utils.stepLog(message, 'darwin');
|
|
||||||
expect(step_log).toEqual('step_log "Test message"');
|
|
||||||
step_log = await utils.stepLog(message, 'openbsd');
|
|
||||||
expect(step_log).toContain('Platform openbsd is not supported');
|
|
||||||
|
|
||||||
let add_log: string = await utils.addLog(
|
|
||||||
'tick',
|
|
||||||
'xdebug',
|
|
||||||
'enabled',
|
|
||||||
'win32'
|
|
||||||
);
|
|
||||||
expect(add_log).toEqual('Add-Log "tick" "xdebug" "enabled"');
|
|
||||||
add_log = await utils.addLog('tick', 'xdebug', 'enabled', 'linux');
|
|
||||||
expect(add_log).toEqual('add_log "tick" "xdebug" "enabled"');
|
|
||||||
add_log = await utils.addLog('tick', 'xdebug', 'enabled', 'darwin');
|
|
||||||
expect(add_log).toEqual('add_log "tick" "xdebug" "enabled"');
|
|
||||||
add_log = await utils.addLog('tick', 'xdebug', 'enabled', 'openbsd');
|
|
||||||
expect(add_log).toContain('Platform openbsd is not supported');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking getExtensionPrefix', async () => {
|
|
||||||
expect(await utils.getExtensionPrefix('extensionDoesNotExist')).toEqual(
|
|
||||||
'extension'
|
|
||||||
);
|
|
||||||
expect(await utils.getExtensionPrefix('xsl')).toEqual('extension');
|
|
||||||
expect(await utils.getExtensionPrefix('xdebug')).toEqual('zend_extension');
|
|
||||||
expect(await utils.getExtensionPrefix('xdebug3')).toEqual('zend_extension');
|
|
||||||
expect(await utils.getExtensionPrefix('opcache')).toEqual('zend_extension');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking suppressOutput', async () => {
|
|
||||||
expect(await utils.suppressOutput('win32')).toEqual(' >$null 2>&1');
|
|
||||||
expect(await utils.suppressOutput('linux')).toEqual(' >/dev/null 2>&1');
|
|
||||||
expect(await utils.suppressOutput('darwin')).toEqual(' >/dev/null 2>&1');
|
|
||||||
expect(await utils.suppressOutput('openbsd')).toContain(
|
|
||||||
'Platform openbsd is not supported'
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking getUnsupportedLog', async () => {
|
|
||||||
expect(await utils.getUnsupportedLog('ext', '5.6', 'linux')).toContain(
|
|
||||||
'add_log "$cross" "ext" "ext is not supported on PHP 5.6"'
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking getCommand', async () => {
|
|
||||||
expect(await utils.getCommand('linux', 'tool')).toBe('add_tool ');
|
|
||||||
expect(await utils.getCommand('darwin', 'tool')).toBe('add_tool ');
|
|
||||||
expect(await utils.getCommand('win32', 'tool')).toBe('Add-Tool ');
|
|
||||||
expect(await utils.getCommand('win32', 'tool_name')).toBe('Add-ToolName ');
|
|
||||||
expect(await utils.getCommand('openbsd', 'tool')).toContain(
|
|
||||||
'Platform openbsd is not supported'
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking joins', async () => {
|
|
||||||
expect(await utils.joins('a', 'b', 'c')).toBe('a b c');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking scriptExtension', async () => {
|
|
||||||
expect(await utils.scriptExtension('linux')).toBe('.sh');
|
|
||||||
expect(await utils.scriptExtension('darwin')).toBe('.sh');
|
|
||||||
expect(await utils.scriptExtension('win32')).toBe('.ps1');
|
|
||||||
expect(await utils.scriptExtension('openbsd')).toContain(
|
|
||||||
'Platform openbsd is not supported'
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking scriptTool', async () => {
|
|
||||||
expect(await utils.scriptTool('linux')).toBe('bash ');
|
|
||||||
expect(await utils.scriptTool('darwin')).toBe('bash ');
|
|
||||||
expect(await utils.scriptTool('win32')).toBe('pwsh ');
|
|
||||||
expect(await utils.scriptTool('openbsd')).toContain(
|
|
||||||
'Platform openbsd is not supported'
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking customPackage', async () => {
|
|
||||||
const script_path: string = path.join('ext', 'pkg.sh');
|
|
||||||
expect(await utils.customPackage('pkg', 'ext', '1.2.3', 'linux')).toContain(
|
|
||||||
script_path + '\nadd_pkg 1.2.3'
|
|
||||||
);
|
|
||||||
expect(
|
|
||||||
await utils.customPackage('pdo_pkg', 'ext', '1.2.3', 'linux')
|
|
||||||
).toContain(script_path + '\nadd_pkg 1.2.3');
|
|
||||||
expect(
|
|
||||||
await utils.customPackage('pkg8', 'ext', '1.2.3', 'linux')
|
|
||||||
).toContain(script_path + '\nadd_pkg 1.2.3');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking parseExtensionSource', async () => {
|
|
||||||
expect(
|
|
||||||
await utils.parseExtensionSource(
|
|
||||||
'ext-org-name/repo-name@release',
|
|
||||||
'extension'
|
|
||||||
)
|
|
||||||
).toContain(
|
|
||||||
'\nadd_extension_from_source ext https://github.com org-name repo-name release extension'
|
|
||||||
);
|
|
||||||
expect(
|
|
||||||
await utils.parseExtensionSource(
|
|
||||||
'ext-https://sub.domain.tld/org/repo@release',
|
|
||||||
'extension'
|
|
||||||
)
|
|
||||||
).toContain(
|
|
||||||
'\nadd_extension_from_source ext https://sub.domain.tld org repo release extension'
|
|
||||||
);
|
|
||||||
expect(
|
|
||||||
await utils.parseExtensionSource(
|
|
||||||
'ext-https://sub.domain.XN--tld/org/repo@release',
|
|
||||||
'extension'
|
|
||||||
)
|
|
||||||
).toContain(
|
|
||||||
'\nadd_extension_from_source ext https://sub.domain.XN--tld org repo release extension'
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking readPHPVersion', async () => {
|
|
||||||
expect(await utils.readPHPVersion()).toBe('latest');
|
|
||||||
|
|
||||||
process.env['php-version-file'] = '.phpenv-version';
|
|
||||||
await expect(utils.readPHPVersion()).rejects.toThrow(
|
|
||||||
"Could not find '.phpenv-version' file."
|
|
||||||
);
|
|
||||||
|
|
||||||
const existsSync = jest.spyOn(fs, 'existsSync').mockImplementation();
|
|
||||||
const readFileSync = jest.spyOn(fs, 'readFileSync').mockImplementation();
|
|
||||||
|
|
||||||
existsSync.mockReturnValue(true);
|
|
||||||
readFileSync.mockReturnValue('8.1');
|
|
||||||
|
|
||||||
expect(await utils.readPHPVersion()).toBe('8.1');
|
|
||||||
|
|
||||||
process.env['php-version'] = '8.2';
|
|
||||||
expect(await utils.readPHPVersion()).toBe('8.2');
|
|
||||||
|
|
||||||
delete process.env['php-version-file'];
|
|
||||||
delete process.env['php-version'];
|
|
||||||
|
|
||||||
existsSync.mockReturnValue(true);
|
|
||||||
readFileSync.mockReturnValue('ruby 1.2.3\nphp 8.4.2\nnode 20.1.2');
|
|
||||||
expect(await utils.readPHPVersion()).toBe('8.4.2');
|
|
||||||
|
|
||||||
existsSync.mockReturnValue(true);
|
|
||||||
readFileSync.mockReturnValue('setup-php');
|
|
||||||
expect(await utils.readPHPVersion()).toBe('setup-php');
|
|
||||||
|
|
||||||
existsSync.mockReturnValueOnce(false).mockReturnValueOnce(true);
|
|
||||||
readFileSync.mockReturnValue(
|
|
||||||
'{ "platform-overrides": { "php": "7.3.25" } }'
|
|
||||||
);
|
|
||||||
expect(await utils.readPHPVersion()).toBe('7.3.25');
|
|
||||||
|
|
||||||
existsSync
|
|
||||||
.mockReturnValueOnce(false)
|
|
||||||
.mockReturnValueOnce(false)
|
|
||||||
.mockReturnValueOnce(true);
|
|
||||||
readFileSync.mockReturnValue(
|
|
||||||
'{ "config": { "platform": { "php": "7.4.33" } } }'
|
|
||||||
);
|
|
||||||
expect(await utils.readPHPVersion()).toBe('7.4.33');
|
|
||||||
|
|
||||||
existsSync.mockClear();
|
|
||||||
readFileSync.mockClear();
|
|
||||||
});
|
|
||||||
|
|
||||||
it('checking setVariable', async () => {
|
|
||||||
let script: string = await utils.setVariable('var', 'command', 'linux');
|
|
||||||
expect(script).toEqual('\nvar="$(command)"\n');
|
|
||||||
script = await utils.setVariable('var', 'command', 'darwin');
|
|
||||||
expect(script).toEqual('\nvar="$(command)"\n');
|
|
||||||
script = await utils.setVariable('var', 'command', 'win32');
|
|
||||||
expect(script).toEqual('\n$var = command\n');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
36
action.yml
36
action.yml
@ -1,38 +1,12 @@
|
|||||||
name: 'Setup PHP Action'
|
name: 'Setup PHP Action'
|
||||||
author: shivammathur
|
author: shivammathur
|
||||||
description: 'GitHub Action for PHP'
|
description: 'Setup a PHP environment with composer and add it to the PATH'
|
||||||
branding:
|
branding:
|
||||||
|
icon: 'activity'
|
||||||
color: 'purple'
|
color: 'purple'
|
||||||
icon: 'play-circle'
|
|
||||||
inputs:
|
inputs:
|
||||||
php-version:
|
php-version:
|
||||||
description: 'Setup PHP version.'
|
description: 'PHP version to install.'
|
||||||
required: false
|
|
||||||
php-version-file:
|
|
||||||
description: 'Setup PHP version from a file.'
|
|
||||||
required: false
|
|
||||||
extensions:
|
|
||||||
description: 'Setup PHP extensions.'
|
|
||||||
required: false
|
|
||||||
ini-file:
|
|
||||||
description: 'Set base ini file.'
|
|
||||||
required: false
|
|
||||||
default: 'production'
|
|
||||||
ini-values:
|
|
||||||
description: 'Add values to php.ini.'
|
|
||||||
required: false
|
|
||||||
coverage:
|
|
||||||
description: 'Setup code coverage driver.'
|
|
||||||
required: false
|
|
||||||
tools:
|
|
||||||
description: 'Setup popular tools globally.'
|
|
||||||
required: false
|
|
||||||
github-token:
|
|
||||||
description: 'GitHub token to use for authentication.'
|
|
||||||
default: ${{ github.token }}
|
|
||||||
outputs:
|
|
||||||
php-version:
|
|
||||||
description: 'PHP version in semver format'
|
|
||||||
runs:
|
runs:
|
||||||
using: 'node24'
|
using: 'node12'
|
||||||
main: 'dist/index.js'
|
main: 'lib/install.js'
|
||||||
|
|||||||
1
dist/index.js
vendored
1
dist/index.js
vendored
File diff suppressed because one or more lines are too long
3
docs/contributors.md
Normal file
3
docs/contributors.md
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# Contributors
|
||||||
|
|
||||||
|
Please submit a Pull Request to the develop branch
|
||||||
@ -1,49 +0,0 @@
|
|||||||
import typescriptEslint from '@typescript-eslint/eslint-plugin';
|
|
||||||
import importPlugin from 'eslint-plugin-import';
|
|
||||||
import jest from 'eslint-plugin-jest';
|
|
||||||
import prettierRecommended from 'eslint-plugin-prettier/recommended';
|
|
||||||
import eslintConfigPrettier from 'eslint-config-prettier';
|
|
||||||
import globals from 'globals';
|
|
||||||
import tsParser from '@typescript-eslint/parser';
|
|
||||||
import js from '@eslint/js';
|
|
||||||
|
|
||||||
export default [
|
|
||||||
js.configs.recommended,
|
|
||||||
...typescriptEslint.configs['flat/recommended'],
|
|
||||||
importPlugin.flatConfigs.errors,
|
|
||||||
importPlugin.flatConfigs.warnings,
|
|
||||||
importPlugin.flatConfigs.typescript,
|
|
||||||
prettierRecommended,
|
|
||||||
eslintConfigPrettier,
|
|
||||||
{
|
|
||||||
plugins: {
|
|
||||||
jest
|
|
||||||
},
|
|
||||||
|
|
||||||
languageOptions: {
|
|
||||||
globals: {
|
|
||||||
...globals.node,
|
|
||||||
...globals.jest
|
|
||||||
},
|
|
||||||
|
|
||||||
parser: tsParser,
|
|
||||||
ecmaVersion: 2021,
|
|
||||||
sourceType: 'module'
|
|
||||||
},
|
|
||||||
|
|
||||||
settings: {
|
|
||||||
'import/resolver': {
|
|
||||||
typescript: {
|
|
||||||
alwaysTryTypes: true,
|
|
||||||
project: './tsconfig.json'
|
|
||||||
},
|
|
||||||
node: {
|
|
||||||
extensions: ['.js', '.ts']
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'import/parsers': {
|
|
||||||
'@typescript-eslint/parser': ['.ts']
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
];
|
|
||||||
@ -1,38 +0,0 @@
|
|||||||
# GitHub Action for roots/bedrock
|
|
||||||
name: Testing Bedrock
|
|
||||||
on: [push, pull_request]
|
|
||||||
jobs:
|
|
||||||
bedrock:
|
|
||||||
name: Bedrock (PHP ${{ matrix.php-versions }})
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
php-versions: ['7.4', '8.0', '8.1']
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
|
|
||||||
# Docs: https://github.com/shivammathur/setup-php
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: ${{ matrix.php-versions }}
|
|
||||||
|
|
||||||
- name: Get composer cache directory
|
|
||||||
id: composer-cache
|
|
||||||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.composer-cache.outputs.dir }}
|
|
||||||
# Use composer.json for key, if composer.lock is not committed.
|
|
||||||
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
|
||||||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
||||||
restore-keys: ${{ runner.os }}-composer-
|
|
||||||
|
|
||||||
- name: Install Composer dependencies
|
|
||||||
run: composer install --no-progress --prefer-dist --optimize-autoloader
|
|
||||||
|
|
||||||
- name: PHP test
|
|
||||||
run: composer test
|
|
||||||
@ -1,36 +0,0 @@
|
|||||||
# GitHub Action for Blackfire Player
|
|
||||||
name: Play a Blackfire Scenario
|
|
||||||
on: [push, pull_request]
|
|
||||||
jobs:
|
|
||||||
blackfire-player:
|
|
||||||
name: Blackfire (PHP ${{ matrix.php-versions }})
|
|
||||||
# Add your Blackfire credentials securely using GitHub Secrets
|
|
||||||
env:
|
|
||||||
BLACKFIRE_SERVER_ID: ${{ secrets.BLACKFIRE_SERVER_ID }}
|
|
||||||
BLACKFIRE_SERVER_TOKEN: ${{ secrets.BLACKFIRE_SERVER_TOKEN }}
|
|
||||||
BLACKFIRE_CLIENT_ID: ${{ secrets.BLACKFIRE_CLIENT_ID }}
|
|
||||||
BLACKFIRE_CLIENT_TOKEN: ${{ secrets.BLACKFIRE_CLIENT_TOKEN }}
|
|
||||||
runs-on: ${{ matrix.operating-system }}
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
operating-system: [ubuntu-latest, windows-latest, macos-latest]
|
|
||||||
php-versions: ['7.4', '8.0', '8.1']
|
|
||||||
# blackfire-player supports PHP >= 5.5
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
|
|
||||||
# Docs: https://github.com/shivammathur/setup-php
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: ${{ matrix.php-versions }}
|
|
||||||
extensions: blackfire
|
|
||||||
# Setup Blackfire CLI and player
|
|
||||||
tools: blackfire, blackfire-player
|
|
||||||
coverage: none
|
|
||||||
|
|
||||||
# Refer to https://blackfire.io/docs/player/index#usage
|
|
||||||
- name: Play the scenario
|
|
||||||
run: blackfire-player run scenario.bkf
|
|
||||||
@ -1,37 +0,0 @@
|
|||||||
# GitHub Action for Blackfire
|
|
||||||
name: Profiling with blackfire
|
|
||||||
on: [push, pull_request]
|
|
||||||
jobs:
|
|
||||||
blackfire:
|
|
||||||
name: Blackfire (PHP ${{ matrix.php-versions }})
|
|
||||||
# Add your Blackfire credentials securely using GitHub Secrets
|
|
||||||
env:
|
|
||||||
BLACKFIRE_SERVER_ID: ${{ secrets.BLACKFIRE_SERVER_ID }}
|
|
||||||
BLACKFIRE_SERVER_TOKEN: ${{ secrets.BLACKFIRE_SERVER_TOKEN }}
|
|
||||||
BLACKFIRE_CLIENT_ID: ${{ secrets.BLACKFIRE_CLIENT_ID }}
|
|
||||||
BLACKFIRE_CLIENT_TOKEN: ${{ secrets.BLACKFIRE_CLIENT_TOKEN }}
|
|
||||||
runs-on: ${{ matrix.operating-system }}
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
operating-system: [ubuntu-latest, windows-latest, macos-latest]
|
|
||||||
php-versions: ['7.4', '8.0', '8.1']
|
|
||||||
# Blackfire supports PHP >= 5.3 on Ubuntu and macOS, and PHP >= 5.4 on Windows
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
|
|
||||||
# Docs: https://github.com/shivammathur/setup-php
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: ${{ matrix.php-versions }}
|
|
||||||
# Setup Blackfire extension and CLI
|
|
||||||
extensions: blackfire
|
|
||||||
tools: blackfire
|
|
||||||
# Disable Xdebug and PCOV coverage drivers
|
|
||||||
coverage: none
|
|
||||||
|
|
||||||
# Refer to https://blackfire.io/docs/cookbooks/profiling-cli
|
|
||||||
- name: Profile
|
|
||||||
run: blackfire run php my-script.php
|
|
||||||
@ -1,138 +0,0 @@
|
|||||||
# GitHub Action for CakePHP with MySQL and Redis
|
|
||||||
# Tested with https://github.com/cakephp/app
|
|
||||||
name: Testing CakePHP with MySQL
|
|
||||||
on: [push, pull_request]
|
|
||||||
jobs:
|
|
||||||
tests:
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
php-versions: ['7.4', '8.0', '8.1']
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
# Docs: https://docs.github.com/en/actions/using-containerized-services
|
|
||||||
services:
|
|
||||||
mysql:
|
|
||||||
image: mysql:latest
|
|
||||||
env:
|
|
||||||
MYSQL_ALLOW_EMPTY_PASSWORD: false
|
|
||||||
MYSQL_ROOT_PASSWORD: password
|
|
||||||
MYSQL_DATABASE: cakephp
|
|
||||||
ports:
|
|
||||||
- 3306/tcp
|
|
||||||
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
|
|
||||||
|
|
||||||
redis:
|
|
||||||
image: redis
|
|
||||||
ports:
|
|
||||||
- 6379/tcp
|
|
||||||
options: --health-cmd="redis-cli ping" --health-interval=10s --health-timeout=5s --health-retries=3
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
|
|
||||||
# Docs: https://github.com/shivammathur/setup-php
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: ${{ matrix.php-versions }}
|
|
||||||
# You can also use ext-apcu or ext-memcached instead of ext-redis
|
|
||||||
# Install memcached if using ext-memcached
|
|
||||||
extensions: mbstring, intl, redis, pdo_mysql
|
|
||||||
coverage: pcov
|
|
||||||
|
|
||||||
# Local MySQL service in GitHub hosted environments is disabled by default.
|
|
||||||
# If you are using it instead of service containers, make sure you start it.
|
|
||||||
# - name: Start mysql service
|
|
||||||
# run: sudo systemctl start mysql.service
|
|
||||||
|
|
||||||
- name: Get composer cache directory
|
|
||||||
id: composer-cache
|
|
||||||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Cache composer dependencies
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.composer-cache.outputs.dir }}
|
|
||||||
# Use composer.json for key, if composer.lock is not committed.
|
|
||||||
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
|
||||||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
||||||
restore-keys: ${{ runner.os }}-composer-
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: |
|
|
||||||
composer install --no-progress --prefer-dist --optimize-autoloader
|
|
||||||
composer run-script post-install-cmd
|
|
||||||
|
|
||||||
# Add a step to run migrations if required
|
|
||||||
- name: Test with phpunit
|
|
||||||
run: vendor/bin/phpunit --coverage-text
|
|
||||||
env:
|
|
||||||
REDIS_PORT: ${{ job.services.redis.ports['6379'] }}
|
|
||||||
DB_DSN: "mysql://root:password@127.0.0.1:${{ job.services.mysql.ports['3306'] }}/cakephp?init[]=SET sql_mode = \"STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION\""
|
|
||||||
|
|
||||||
coding-standard:
|
|
||||||
name: Coding Standard
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
|
|
||||||
# Docs: https://github.com/shivammathur/setup-php
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: '8.1'
|
|
||||||
extensions: mbstring, intl
|
|
||||||
|
|
||||||
- name: Get composer cache directory
|
|
||||||
id: composer-cache
|
|
||||||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Cache composer dependencies
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.composer-cache.outputs.dir }}
|
|
||||||
# Use composer.json for key, if composer.lock is not committed.
|
|
||||||
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
|
||||||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
||||||
restore-keys: ${{ runner.os }}-composer-
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: composer install --no-progress --prefer-dist --optimize-autoloader
|
|
||||||
|
|
||||||
- name: PHP CodeSniffer
|
|
||||||
run: composer cs-check
|
|
||||||
|
|
||||||
static-analysis:
|
|
||||||
name: Static Analysis
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
|
|
||||||
# Docs: https://github.com/shivammathur/setup-php
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: '8.1'
|
|
||||||
extensions: mbstring, intl
|
|
||||||
tools: phpstan
|
|
||||||
|
|
||||||
- name: Get composer cache directory
|
|
||||||
id: composer-cache
|
|
||||||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Cache composer dependencies
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.composer-cache.outputs.dir }}
|
|
||||||
# Use composer.json for key, if composer.lock is not committed.
|
|
||||||
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
|
||||||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
||||||
restore-keys: ${{ runner.os }}-composer-
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: composer install --no-progress --prefer-dist --optimize-autoloader
|
|
||||||
|
|
||||||
- name: Static Analysis using PHPStan
|
|
||||||
run: phpstan analyse --no-progress src/
|
|
||||||
@ -1,138 +0,0 @@
|
|||||||
# GitHub Action for CakePHP with PostgreSQL and Redis
|
|
||||||
# Tested with https://github.com/cakephp/app
|
|
||||||
name: Testing CakePHP with PostgreSQL
|
|
||||||
on: [push, pull_request]
|
|
||||||
jobs:
|
|
||||||
tests:
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
php-versions: ['7.4', '8.0', '8.1']
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
# Docs: https://docs.github.com/en/actions/using-containerized-services
|
|
||||||
services:
|
|
||||||
postgres:
|
|
||||||
image: postgres:latest
|
|
||||||
env:
|
|
||||||
POSTGRES_USER: postgres
|
|
||||||
POSTGRES_PASSWORD: postgres
|
|
||||||
POSTGRES_DB: postgres
|
|
||||||
ports:
|
|
||||||
- 5432/tcp
|
|
||||||
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3
|
|
||||||
|
|
||||||
redis:
|
|
||||||
image: redis
|
|
||||||
ports:
|
|
||||||
- 6379/tcp
|
|
||||||
options: --health-cmd="redis-cli ping" --health-interval=10s --health-timeout=5s --health-retries=3
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
|
|
||||||
# Docs: https://github.com/shivammathur/setup-php
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: ${{ matrix.php-versions }}
|
|
||||||
# You can also use ext-apcu or ext-memcached instead of ext-redis
|
|
||||||
# Install memcached if using ext-memcached
|
|
||||||
extensions: mbstring, intl, redis, pdo_pgsql
|
|
||||||
coverage: pcov
|
|
||||||
|
|
||||||
# Local PostgreSQL service in GitHub hosted environments is disabled by default.
|
|
||||||
# If you are using it instead of service containers, make sure you start it.
|
|
||||||
# - name: Start postgresql service
|
|
||||||
# run: sudo systemctl start postgresql.service
|
|
||||||
|
|
||||||
- name: Get composer cache directory
|
|
||||||
id: composer-cache
|
|
||||||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Cache composer dependencies
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.composer-cache.outputs.dir }}
|
|
||||||
# Use composer.json for key, if composer.lock is not committed.
|
|
||||||
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
|
||||||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
||||||
restore-keys: ${{ runner.os }}-composer-
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: |
|
|
||||||
composer install --no-progress --prefer-dist --optimize-autoloader
|
|
||||||
composer run-script post-install-cmd
|
|
||||||
|
|
||||||
# Add a step to run migrations if required
|
|
||||||
- name: Test with phpunit
|
|
||||||
run: vendor/bin/phpunit --coverage-text
|
|
||||||
env:
|
|
||||||
REDIS_PORT: ${{ job.services.redis.ports['6379'] }}
|
|
||||||
DB_DSN: postgres://postgres@127.0.0.1:${{ job.services.postgres.ports['5432'] }}/postgres
|
|
||||||
|
|
||||||
coding-standard:
|
|
||||||
name: Coding Standard
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
|
|
||||||
# Docs: https://github.com/shivammathur/setup-php
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: '8.1'
|
|
||||||
extensions: mbstring, intl
|
|
||||||
|
|
||||||
- name: Get composer cache directory
|
|
||||||
id: composer-cache
|
|
||||||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Cache composer dependencies
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.composer-cache.outputs.dir }}
|
|
||||||
# Use composer.json for key, if composer.lock is not committed.
|
|
||||||
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
|
||||||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
||||||
restore-keys: ${{ runner.os }}-composer-
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: composer install --no-progress --prefer-dist --optimize-autoloader
|
|
||||||
|
|
||||||
- name: PHP CodeSniffer
|
|
||||||
run: composer cs-check
|
|
||||||
|
|
||||||
static-analysis:
|
|
||||||
name: Static Analysis
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
|
|
||||||
# Docs: https://github.com/shivammathur/setup-php
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: '8.1'
|
|
||||||
extensions: mbstring, intl
|
|
||||||
tools: phpstan
|
|
||||||
|
|
||||||
- name: Get composer cache directory
|
|
||||||
id: composer-cache
|
|
||||||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Cache composer dependencies
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.composer-cache.outputs.dir }}
|
|
||||||
# Use composer.json for key, if composer.lock is not committed.
|
|
||||||
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
|
||||||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
||||||
restore-keys: ${{ runner.os }}-composer-
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: composer install --no-progress --prefer-dist --optimize-autoloader
|
|
||||||
|
|
||||||
- name: Static Analysis using PHPStan
|
|
||||||
run: phpstan analyse --no-progress src/
|
|
||||||
@ -1,109 +0,0 @@
|
|||||||
# GitHub Action for CakePHP
|
|
||||||
# Tested with https://github.com/cakephp/app
|
|
||||||
name: Testing CakePHP
|
|
||||||
on: [push, pull_request]
|
|
||||||
jobs:
|
|
||||||
tests:
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
operating-system: [ubuntu-latest, windows-latest, macos-latest]
|
|
||||||
php-versions: ['7.4', '8.0', '8.1']
|
|
||||||
runs-on: ${{ matrix.operating-system }}
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
|
|
||||||
# Docs: https://github.com/shivammathur/setup-php
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: ${{ matrix.php-versions }}
|
|
||||||
extensions: mbstring, intl, pdo_sqlite, pdo_mysql
|
|
||||||
coverage: pcov
|
|
||||||
|
|
||||||
- name: Get composer cache directory
|
|
||||||
id: composer-cache
|
|
||||||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Cache composer dependencies
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.composer-cache.outputs.dir }}
|
|
||||||
# Use composer.json for key, if composer.lock is not committed.
|
|
||||||
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
|
||||||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
||||||
restore-keys: ${{ runner.os }}-composer-
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: |
|
|
||||||
composer install --no-progress --prefer-dist --optimize-autoloader
|
|
||||||
composer run-script post-install-cmd
|
|
||||||
|
|
||||||
- name: Test with phpunit
|
|
||||||
run: vendor/bin/phpunit --coverage-text
|
|
||||||
|
|
||||||
coding-standard:
|
|
||||||
name: Coding Standard
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
|
|
||||||
# Docs: https://github.com/shivammathur/setup-php
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: '8.1'
|
|
||||||
extensions: mbstring, intl
|
|
||||||
- name: Get composer cache directory
|
|
||||||
id: composer-cache
|
|
||||||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Cache composer dependencies
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.composer-cache.outputs.dir }}
|
|
||||||
# Use composer.json for key, if composer.lock is not committed.
|
|
||||||
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
|
||||||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
||||||
restore-keys: ${{ runner.os }}-composer-
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: composer install --no-progress --prefer-dist --optimize-autoloader
|
|
||||||
|
|
||||||
- name: PHP CodeSniffer
|
|
||||||
run: composer cs-check
|
|
||||||
|
|
||||||
static-analysis:
|
|
||||||
name: Static Analysis
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
|
|
||||||
# Docs: https://github.com/shivammathur/setup-php
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: '8.1'
|
|
||||||
extensions: mbstring, intl
|
|
||||||
tools: phpstan
|
|
||||||
|
|
||||||
- name: Get composer cache directory
|
|
||||||
id: composer-cache
|
|
||||||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Cache composer dependencies
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.composer-cache.outputs.dir }}
|
|
||||||
# Use composer.json for key, if composer.lock is not committed.
|
|
||||||
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
|
||||||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
||||||
restore-keys: ${{ runner.os }}-composer-
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: composer install --no-progress --prefer-dist --optimize-autoloader
|
|
||||||
|
|
||||||
- name: Static Analysis using PHPStan
|
|
||||||
run: phpstan analyse --no-progress src/
|
|
||||||
@ -1,40 +0,0 @@
|
|||||||
# GitHub Action for CodeIgniter
|
|
||||||
name: Testing CodeIgniter
|
|
||||||
on: [push, pull_request]
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
operating-system: [ubuntu-latest, windows-latest, macos-latest]
|
|
||||||
php-versions: ['7.4', '8.0', '8.1']
|
|
||||||
runs-on: ${{ matrix.operating-system }}
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
|
|
||||||
# Docs: https://github.com/shivammathur/setup-php
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: ${{ matrix.php-versions }}
|
|
||||||
extensions: mbstring, intl, curl, dom
|
|
||||||
coverage: xdebug
|
|
||||||
|
|
||||||
- name: Get composer cache directory
|
|
||||||
id: composer-cache
|
|
||||||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Cache composer dependencies
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.composer-cache.outputs.dir }}
|
|
||||||
# Use composer.json for key, if composer.lock is not committed.
|
|
||||||
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
|
||||||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
||||||
restore-keys: ${{ runner.os }}-composer-
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: composer install --no-progress --prefer-dist --optimize-autoloader
|
|
||||||
|
|
||||||
- name: Test with phpunit
|
|
||||||
run: vendor/bin/phpunit --coverage-text
|
|
||||||
@ -1,39 +0,0 @@
|
|||||||
# GitHub Action for Laminas framework MVC projects
|
|
||||||
name: Testing Zend Framework
|
|
||||||
on: [push, pull_request]
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
operating-system: [ubuntu-latest, windows-latest, macos-latest]
|
|
||||||
php-versions: ['7.4', '8.0', '8.1']
|
|
||||||
runs-on: ${{ matrix.operating-system }}
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
|
|
||||||
# Docs: https://github.com/shivammathur/setup-php
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: ${{ matrix.php-versions }}
|
|
||||||
coverage: xdebug
|
|
||||||
|
|
||||||
- name: Get composer cache directory
|
|
||||||
id: composer-cache
|
|
||||||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Cache composer dependencies
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.composer-cache.outputs.dir }}
|
|
||||||
# Use composer.json for key, if composer.lock is not committed.
|
|
||||||
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
|
||||||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
||||||
restore-keys: ${{ runner.os }}-composer-
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: composer install --no-progress --prefer-dist --optimize-autoloader
|
|
||||||
|
|
||||||
- name: Test with phpunit
|
|
||||||
run: vendor/bin/phpunit --coverage-text
|
|
||||||
@ -1,89 +0,0 @@
|
|||||||
# GitHub Action for Laravel with MySQL and Redis
|
|
||||||
name: Testing Laravel with MySQL
|
|
||||||
on: [push, pull_request]
|
|
||||||
jobs:
|
|
||||||
laravel:
|
|
||||||
name: Laravel (PHP ${{ matrix.php-versions }})
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
env:
|
|
||||||
DB_DATABASE: laravel
|
|
||||||
DB_USERNAME: root
|
|
||||||
DB_PASSWORD: password
|
|
||||||
BROADCAST_DRIVER: log
|
|
||||||
CACHE_DRIVER: redis
|
|
||||||
QUEUE_CONNECTION: redis
|
|
||||||
SESSION_DRIVER: redis
|
|
||||||
|
|
||||||
# Docs: https://docs.github.com/en/actions/using-containerized-services
|
|
||||||
services:
|
|
||||||
mysql:
|
|
||||||
image: mysql:latest
|
|
||||||
env:
|
|
||||||
MYSQL_ALLOW_EMPTY_PASSWORD: false
|
|
||||||
MYSQL_ROOT_PASSWORD: password
|
|
||||||
MYSQL_DATABASE: laravel
|
|
||||||
ports:
|
|
||||||
- 3306/tcp
|
|
||||||
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
|
|
||||||
|
|
||||||
redis:
|
|
||||||
image: redis
|
|
||||||
ports:
|
|
||||||
- 6379/tcp
|
|
||||||
options: --health-cmd="redis-cli ping" --health-interval=10s --health-timeout=5s --health-retries=3
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
php-versions: ['7.4', '8.0', '8.1']
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
|
|
||||||
# Docs: https://github.com/shivammathur/setup-php
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: ${{ matrix.php-versions }}
|
|
||||||
extensions: mbstring, dom, fileinfo, mysql
|
|
||||||
coverage: xdebug
|
|
||||||
|
|
||||||
# Local MySQL service in GitHub hosted environments is disabled by default.
|
|
||||||
# If you are using it instead of service containers, make sure you start it.
|
|
||||||
# - name: Start mysql service
|
|
||||||
# run: sudo systemctl start mysql.service
|
|
||||||
|
|
||||||
- name: Get composer cache directory
|
|
||||||
id: composer-cache
|
|
||||||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Cache composer dependencies
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.composer-cache.outputs.dir }}
|
|
||||||
# Use composer.json for key, if composer.lock is not committed.
|
|
||||||
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
|
||||||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
||||||
restore-keys: ${{ runner.os }}-composer-
|
|
||||||
|
|
||||||
- name: Install Composer dependencies
|
|
||||||
run: composer install --no-progress --prefer-dist --optimize-autoloader
|
|
||||||
|
|
||||||
- name: Prepare the application
|
|
||||||
run: |
|
|
||||||
php -r "file_exists('.env') || copy('.env.example', '.env');"
|
|
||||||
php artisan key:generate
|
|
||||||
|
|
||||||
- name: Clear Config
|
|
||||||
run: php artisan config:clear
|
|
||||||
|
|
||||||
- name: Run Migration
|
|
||||||
run: php artisan migrate -v
|
|
||||||
env:
|
|
||||||
DB_PORT: ${{ job.services.mysql.ports['3306'] }}
|
|
||||||
REDIS_PORT: ${{ job.services.redis.ports['6379'] }}
|
|
||||||
|
|
||||||
- name: Test with phpunit
|
|
||||||
run: vendor/bin/phpunit --coverage-text
|
|
||||||
env:
|
|
||||||
DB_PORT: ${{ job.services.mysql.ports['3306'] }}
|
|
||||||
REDIS_PORT: ${{ job.services.redis.ports['6379'] }}
|
|
||||||
@ -1,91 +0,0 @@
|
|||||||
# GitHub Action for Laravel with PostgreSQL and Redis
|
|
||||||
name: Testing Laravel with PostgreSQL
|
|
||||||
on: [push, pull_request]
|
|
||||||
jobs:
|
|
||||||
laravel:
|
|
||||||
name: Laravel (PHP ${{ matrix.php-versions }})
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
env:
|
|
||||||
BROADCAST_DRIVER: log
|
|
||||||
CACHE_DRIVER: redis
|
|
||||||
QUEUE_CONNECTION: redis
|
|
||||||
SESSION_DRIVER: redis
|
|
||||||
DB_CONNECTION: pgsql
|
|
||||||
DB_HOST: localhost
|
|
||||||
DB_PASSWORD: postgres
|
|
||||||
DB_USERNAME: postgres
|
|
||||||
DB_DATABASE: postgres
|
|
||||||
|
|
||||||
# Docs: https://docs.github.com/en/actions/using-containerized-services
|
|
||||||
services:
|
|
||||||
postgres:
|
|
||||||
image: postgres:latest
|
|
||||||
env:
|
|
||||||
POSTGRES_USER: postgres
|
|
||||||
POSTGRES_PASSWORD: postgres
|
|
||||||
POSTGRES_DB: postgres
|
|
||||||
ports:
|
|
||||||
- 5432/tcp
|
|
||||||
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3
|
|
||||||
|
|
||||||
redis:
|
|
||||||
image: redis
|
|
||||||
ports:
|
|
||||||
- 6379/tcp
|
|
||||||
options: --health-cmd="redis-cli ping" --health-interval=10s --health-timeout=5s --health-retries=3
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
php-versions: ['7.4', '8.0', '8.1']
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
|
|
||||||
# Docs: https://github.com/shivammathur/setup-php
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: ${{ matrix.php-versions }}
|
|
||||||
extensions: mbstring, dom, fileinfo, pgsql
|
|
||||||
coverage: xdebug
|
|
||||||
|
|
||||||
# Local PostgreSQL service in GitHub hosted environments is disabled by default.
|
|
||||||
# If you are using it instead of service containers, make sure you start it.
|
|
||||||
# - name: Start postgresql service
|
|
||||||
# run: sudo systemctl start postgresql.service
|
|
||||||
|
|
||||||
- name: Get composer cache directory
|
|
||||||
id: composer-cache
|
|
||||||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Cache composer dependencies
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.composer-cache.outputs.dir }}
|
|
||||||
# Use composer.json for key, if composer.lock is not committed.
|
|
||||||
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
|
||||||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
||||||
restore-keys: ${{ runner.os }}-composer-
|
|
||||||
|
|
||||||
- name: Install Composer dependencies
|
|
||||||
run: composer install --no-progress --prefer-dist --optimize-autoloader
|
|
||||||
|
|
||||||
- name: Prepare the application
|
|
||||||
run: |
|
|
||||||
php -r "file_exists('.env') || copy('.env.example', '.env');"
|
|
||||||
php artisan key:generate
|
|
||||||
|
|
||||||
- name: Clear Config
|
|
||||||
run: php artisan config:clear
|
|
||||||
|
|
||||||
- name: Run Migration
|
|
||||||
run: php artisan migrate -v
|
|
||||||
env:
|
|
||||||
DB_PORT: ${{ job.services.postgres.ports[5432] }}
|
|
||||||
REDIS_PORT: ${{ job.services.redis.ports['6379'] }}
|
|
||||||
|
|
||||||
- name: Test with phpunit
|
|
||||||
run: vendor/bin/phpunit --coverage-text
|
|
||||||
env:
|
|
||||||
DB_PORT: ${{ job.services.postgres.ports[5432] }}
|
|
||||||
REDIS_PORT: ${{ job.services.redis.ports['6379'] }}
|
|
||||||
@ -1,50 +0,0 @@
|
|||||||
# GitHub Action for Laravel
|
|
||||||
name: Testing Laravel
|
|
||||||
on: [push, pull_request]
|
|
||||||
jobs:
|
|
||||||
laravel:
|
|
||||||
name: Laravel (PHP ${{ matrix.php-versions }} on ${{ matrix.operating-system }})
|
|
||||||
runs-on: ${{ matrix.operating-system }}
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
operating-system: [ubuntu-latest, windows-latest, macos-latest]
|
|
||||||
php-versions: ['7.4', '8.0', '8.1']
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
|
|
||||||
# Docs: https://github.com/shivammathur/setup-php
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: ${{ matrix.php-versions }}
|
|
||||||
extensions: mbstring, dom, fileinfo
|
|
||||||
coverage: xdebug
|
|
||||||
|
|
||||||
- name: Get composer cache directory
|
|
||||||
id: composer-cache
|
|
||||||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Cache composer dependencies
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.composer-cache.outputs.dir }}
|
|
||||||
# Use composer.json for key, if composer.lock is not committed.
|
|
||||||
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
|
||||||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
||||||
restore-keys: ${{ runner.os }}-composer-
|
|
||||||
|
|
||||||
- name: Install Composer dependencies
|
|
||||||
run: composer install --no-progress --prefer-dist --optimize-autoloader
|
|
||||||
|
|
||||||
- name: Prepare the application
|
|
||||||
run: |
|
|
||||||
php -r "file_exists('.env') || copy('.env.example', '.env');"
|
|
||||||
php artisan key:generate
|
|
||||||
|
|
||||||
- name: Clear Config
|
|
||||||
run: php artisan config:clear
|
|
||||||
|
|
||||||
- name: Test with phpunit
|
|
||||||
run: vendor/bin/phpunit --coverage-text
|
|
||||||
@ -1,89 +0,0 @@
|
|||||||
# GitHub Action for Lumen with MySQL and Redis
|
|
||||||
name: Testing Lumen with MySQL
|
|
||||||
on: [push, pull_request]
|
|
||||||
jobs:
|
|
||||||
lumen:
|
|
||||||
name: Lumen (PHP ${{ matrix.php-versions }})
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
env:
|
|
||||||
DB_DATABASE: lumen
|
|
||||||
DB_USERNAME: root
|
|
||||||
DB_PASSWORD: password
|
|
||||||
BROADCAST_DRIVER: log
|
|
||||||
CACHE_DRIVER: redis
|
|
||||||
QUEUE_CONNECTION: redis
|
|
||||||
SESSION_DRIVER: redis
|
|
||||||
|
|
||||||
# Docs: https://docs.github.com/en/actions/using-containerized-services
|
|
||||||
services:
|
|
||||||
mysql:
|
|
||||||
image: mysql:latest
|
|
||||||
env:
|
|
||||||
MYSQL_ALLOW_EMPTY_PASSWORD: false
|
|
||||||
MYSQL_ROOT_PASSWORD: password
|
|
||||||
MYSQL_DATABASE: lumen
|
|
||||||
ports:
|
|
||||||
- 3306/tcp
|
|
||||||
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
|
|
||||||
|
|
||||||
redis:
|
|
||||||
image: redis
|
|
||||||
ports:
|
|
||||||
- 6379/tcp
|
|
||||||
options: --health-cmd="redis-cli ping" --health-interval=10s --health-timeout=5s --health-retries=3
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
php-versions: ['7.4', '8.0', '8.1']
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
|
|
||||||
# Docs: https://github.com/shivammathur/setup-php
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: ${{ matrix.php-versions }}
|
|
||||||
extensions: mbstring, dom, fileinfo, mysql
|
|
||||||
coverage: xdebug
|
|
||||||
|
|
||||||
# Local MySQL service in GitHub hosted environments is disabled by default.
|
|
||||||
# If you are using it instead of service containers, make sure you start it.
|
|
||||||
# - name: Start mysql service
|
|
||||||
# run: sudo systemctl start mysql.service
|
|
||||||
|
|
||||||
- name: Get composer cache directory
|
|
||||||
id: composer-cache
|
|
||||||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Cache composer dependencies
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.composer-cache.outputs.dir }}
|
|
||||||
# Use composer.json for key, if composer.lock is not committed.
|
|
||||||
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
|
||||||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
||||||
restore-keys: ${{ runner.os }}-composer-
|
|
||||||
|
|
||||||
- name: Install Composer dependencies
|
|
||||||
run: |
|
|
||||||
composer install --no-progress --prefer-dist --optimize-autoloader
|
|
||||||
composer require predis/predis illuminate/redis
|
|
||||||
|
|
||||||
- name: Prepare the application
|
|
||||||
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
|
|
||||||
|
|
||||||
- name: Register Redis as service provider
|
|
||||||
run: sed -i '$i\$app->register(Illuminate\\Redis\\RedisServiceProvider::class);' bootstrap/app.php
|
|
||||||
|
|
||||||
- name: Run Migration
|
|
||||||
run: php artisan migrate -v
|
|
||||||
env:
|
|
||||||
DB_PORT: ${{ job.services.mysql.ports['3306'] }}
|
|
||||||
REDIS_PORT: ${{ job.services.redis.ports['6379'] }}
|
|
||||||
|
|
||||||
- name: Test with phpunit
|
|
||||||
run: vendor/bin/phpunit --coverage-text
|
|
||||||
env:
|
|
||||||
DB_PORT: ${{ job.services.mysql.ports['3306'] }}
|
|
||||||
REDIS_PORT: ${{ job.services.redis.ports['6379'] }}
|
|
||||||
@ -1,91 +0,0 @@
|
|||||||
# GitHub Action for Lumen with PostgreSQL and Redis
|
|
||||||
name: Testing Lumen with PostgreSQL
|
|
||||||
on: [push, pull_request]
|
|
||||||
jobs:
|
|
||||||
laravel:
|
|
||||||
name: Lumen (PHP ${{ matrix.php-versions }})
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
env:
|
|
||||||
BROADCAST_DRIVER: log
|
|
||||||
CACHE_DRIVER: redis
|
|
||||||
QUEUE_CONNECTION: redis
|
|
||||||
SESSION_DRIVER: redis
|
|
||||||
DB_CONNECTION: pgsql
|
|
||||||
DB_HOST: localhost
|
|
||||||
DB_PASSWORD: postgres
|
|
||||||
DB_USERNAME: postgres
|
|
||||||
DB_DATABASE: postgres
|
|
||||||
|
|
||||||
# Docs: https://docs.github.com/en/actions/using-containerized-services
|
|
||||||
services:
|
|
||||||
postgres:
|
|
||||||
image: postgres:latest
|
|
||||||
env:
|
|
||||||
POSTGRES_USER: postgres
|
|
||||||
POSTGRES_PASSWORD: postgres
|
|
||||||
POSTGRES_DB: postgres
|
|
||||||
ports:
|
|
||||||
- 5432/tcp
|
|
||||||
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3
|
|
||||||
|
|
||||||
redis:
|
|
||||||
image: redis
|
|
||||||
ports:
|
|
||||||
- 6379/tcp
|
|
||||||
options: --health-cmd="redis-cli ping" --health-interval=10s --health-timeout=5s --health-retries=3
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
php-versions: ['7.4', '8.0', '8.1']
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
|
|
||||||
# Docs: https://github.com/shivammathur/setup-php
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: ${{ matrix.php-versions }}
|
|
||||||
extensions: mbstring, dom, fileinfo, pgsql
|
|
||||||
coverage: xdebug
|
|
||||||
|
|
||||||
# Local PostgreSQL service in GitHub hosted environments is disabled by default.
|
|
||||||
# If you are using it instead of service containers, make sure you start it.
|
|
||||||
# - name: Start postgresql service
|
|
||||||
# run: sudo systemctl start postgresql.service
|
|
||||||
|
|
||||||
- name: Get composer cache directory
|
|
||||||
id: composer-cache
|
|
||||||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Cache composer dependencies
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.composer-cache.outputs.dir }}
|
|
||||||
# Use composer.json for key, if composer.lock is not committed.
|
|
||||||
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
|
||||||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
||||||
restore-keys: ${{ runner.os }}-composer-
|
|
||||||
|
|
||||||
- name: Install Composer dependencies
|
|
||||||
run: |
|
|
||||||
composer install --no-progress --prefer-dist --optimize-autoloader
|
|
||||||
composer require predis/predis illuminate/redis
|
|
||||||
|
|
||||||
- name: Prepare the application
|
|
||||||
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
|
|
||||||
|
|
||||||
- name: Register Redis as service provider
|
|
||||||
run: sed -i '$i\$app->register(Illuminate\\Redis\\RedisServiceProvider::class);' bootstrap/app.php
|
|
||||||
|
|
||||||
- name: Run Migration
|
|
||||||
run: php artisan migrate -v
|
|
||||||
env:
|
|
||||||
DB_PORT: ${{ job.services.postgres.ports[5432] }}
|
|
||||||
REDIS_PORT: ${{ job.services.redis.ports['6379'] }}
|
|
||||||
|
|
||||||
- name: Test with phpunit
|
|
||||||
run: vendor/bin/phpunit --coverage-text
|
|
||||||
env:
|
|
||||||
DB_PORT: ${{ job.services.postgres.ports[5432] }}
|
|
||||||
REDIS_PORT: ${{ job.services.redis.ports['6379'] }}
|
|
||||||
@ -1,45 +0,0 @@
|
|||||||
# GitHub Action for Lumen
|
|
||||||
name: Unit Testing Lumen
|
|
||||||
on: [push, pull_request]
|
|
||||||
jobs:
|
|
||||||
lumen:
|
|
||||||
name: Lumen (PHP ${{ matrix.php-versions }} on ${{ matrix.operating-system }})
|
|
||||||
runs-on: ${{ matrix.operating-system }}
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
operating-system: [ubuntu-latest, windows-latest, macos-latest]
|
|
||||||
php-versions: ['7.4', '8.0', '8.1']
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
|
|
||||||
# Docs: https://github.com/shivammathur/setup-php
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: ${{ matrix.php-versions }}
|
|
||||||
extensions: mbstring, dom, fileinfo, mysql
|
|
||||||
coverage: xdebug
|
|
||||||
|
|
||||||
- name: Get composer cache directory
|
|
||||||
id: composer-cache
|
|
||||||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Cache composer dependencies
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.composer-cache.outputs.dir }}
|
|
||||||
# Use composer.json for key, if composer.lock is not committed.
|
|
||||||
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
|
||||||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
||||||
restore-keys: ${{ runner.os }}-composer-
|
|
||||||
|
|
||||||
- name: Install Composer dependencies
|
|
||||||
run: composer install --no-progress --prefer-dist --optimize-autoloader
|
|
||||||
|
|
||||||
- name: Prepare the application
|
|
||||||
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
|
|
||||||
|
|
||||||
- name: Test with phpunit
|
|
||||||
run: vendor/bin/phpunit --coverage-text
|
|
||||||
@ -1,88 +0,0 @@
|
|||||||
# GitHub Action for Phalcon with MySQL
|
|
||||||
## Notes
|
|
||||||
## Make sure you have .env.example or .env file in your project
|
|
||||||
## and you have loaded Dotenv (https://github.com/vlucas/phpdotenv)
|
|
||||||
name: Testing Phalcon with MySQL
|
|
||||||
on: [push, pull_request]
|
|
||||||
jobs:
|
|
||||||
phalcon:
|
|
||||||
name: Phalcon (PHP ${{ matrix.php-versions }})
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
env:
|
|
||||||
DB_ADAPTER: mysql
|
|
||||||
DB_HOST: 127.0.0.1
|
|
||||||
DB_NAME: phalcon
|
|
||||||
DB_USERNAME: root
|
|
||||||
DB_PASSWORD: password
|
|
||||||
CODECEPTION_URL: 127.0.0.1
|
|
||||||
CODECEPTION_PORT: 8888
|
|
||||||
|
|
||||||
# Docs: https://docs.github.com/en/actions/using-containerized-services
|
|
||||||
services:
|
|
||||||
mysql:
|
|
||||||
image: mysql:latest
|
|
||||||
env:
|
|
||||||
MYSQL_ALLOW_EMPTY_PASSWORD: false
|
|
||||||
MYSQL_ROOT_PASSWORD: password
|
|
||||||
MYSQL_DATABASE: phalcon
|
|
||||||
ports:
|
|
||||||
- 3306/tcp
|
|
||||||
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
php-versions: ['7.2', '7.3', '7.4']
|
|
||||||
# For phalcon 3.x, use
|
|
||||||
# php-versions: ['7.0', '7.1', '7.2', '7.3']
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
|
|
||||||
# Docs: https://github.com/shivammathur/setup-php
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: ${{ matrix.php-versions }}
|
|
||||||
# Use phalcon3 for the phalcon 3.x.
|
|
||||||
extensions: mbstring, dom, zip, phalcon4, mysql
|
|
||||||
coverage: xdebug
|
|
||||||
|
|
||||||
# Local MySQL service in GitHub hosted environments is disabled by default.
|
|
||||||
# If you are using it instead of service containers, make sure you start it.
|
|
||||||
# - name: Start mysql service
|
|
||||||
# run: sudo systemctl start mysql.service
|
|
||||||
|
|
||||||
- name: Get composer cache directory
|
|
||||||
id: composer-cache
|
|
||||||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Cache composer dependencies
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.composer-cache.outputs.dir }}
|
|
||||||
# Use composer.json for key, if composer.lock is not committed.
|
|
||||||
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
|
||||||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
||||||
restore-keys: ${{ runner.os }}-composer-
|
|
||||||
|
|
||||||
- name: Install Composer dependencies
|
|
||||||
run: composer install --no-progress --prefer-dist --optimize-autoloader
|
|
||||||
|
|
||||||
- name: Prepare the application
|
|
||||||
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
|
|
||||||
|
|
||||||
- name: Run Migration
|
|
||||||
run: |
|
|
||||||
if [ ! -e phinx.yml ]; then vendor/bin/phinx init; fi
|
|
||||||
vendor/bin/phinx migrate
|
|
||||||
vendor/bin/phinx seed:run
|
|
||||||
env:
|
|
||||||
DB_PORT: ${{ job.services.mysql.ports['3306'] }}
|
|
||||||
|
|
||||||
- name: Run Tests
|
|
||||||
run: |
|
|
||||||
(cd public && nohup php -S $CODECEPTION_URL:$CODECEPTION_PORT > phalcon.log 2>&1 &)
|
|
||||||
vendor/bin/codecept build
|
|
||||||
vendor/bin/codecept run
|
|
||||||
env:
|
|
||||||
DB_PORT: ${{ job.services.mysql.ports['3306'] }}
|
|
||||||
@ -1,84 +0,0 @@
|
|||||||
# GitHub Action for Phalcon with PostgreSQL
|
|
||||||
## Notes
|
|
||||||
## Make sure you have .env.example or .env file in your project
|
|
||||||
## and you have loaded Dotenv (https://github.com/vlucas/phpdotenv)
|
|
||||||
name: Testing Phalcon with PostgreSQL
|
|
||||||
on: [push, pull_request]
|
|
||||||
jobs:
|
|
||||||
phalcon:
|
|
||||||
name: Phalcon (PHP ${{ matrix.php-versions }})
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
env:
|
|
||||||
DB_ADAPTER: pgsql
|
|
||||||
DB_HOST: 127.0.0.1
|
|
||||||
DB_NAME: postgres
|
|
||||||
DB_USERNAME: postgres
|
|
||||||
DB_PASSWORD: postgres
|
|
||||||
CODECEPTION_URL: 127.0.0.1
|
|
||||||
CODECEPTION_PORT: 8888
|
|
||||||
DB_CONNECTION: pgsql
|
|
||||||
|
|
||||||
# Docs: https://docs.github.com/en/actions/using-containerized-services
|
|
||||||
services:
|
|
||||||
postgres:
|
|
||||||
image: postgres:latest
|
|
||||||
env:
|
|
||||||
POSTGRES_USER: postgres
|
|
||||||
POSTGRES_PASSWORD: postgres
|
|
||||||
POSTGRES_DB: postgres
|
|
||||||
ports:
|
|
||||||
- 5432/tcp
|
|
||||||
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
php-versions: ['7.2', '7.3', '7.4']
|
|
||||||
# For phalcon 3.x, use
|
|
||||||
# php-versions: ['7.0', '7.1', '7.2', '7.3']
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
|
|
||||||
# Docs: https://github.com/shivammathur/setup-php
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: ${{ matrix.php-versions }}
|
|
||||||
# Use phalcon3 for the phalcon 3.x
|
|
||||||
extensions: mbstring, dom, zip, phalcon4, pgsql
|
|
||||||
coverage: xdebug
|
|
||||||
|
|
||||||
# Local PostgreSQL service in GitHub hosted environments is disabled by default.
|
|
||||||
# If you are using it instead of service containers, make sure you start it.
|
|
||||||
# - name: Start postgresql service
|
|
||||||
# run: sudo systemctl start postgresql.service
|
|
||||||
|
|
||||||
- name: Get composer cache directory
|
|
||||||
id: composer-cache
|
|
||||||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
|
||||||
- name: Cache composer dependencies
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.composer-cache.outputs.dir }}
|
|
||||||
# Use composer.json for key, if composer.lock is not committed.
|
|
||||||
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
|
||||||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
||||||
restore-keys: ${{ runner.os }}-composer-
|
|
||||||
- name: Install Composer dependencies
|
|
||||||
run: composer install --no-progress --prefer-dist --optimize-autoloader
|
|
||||||
- name: Prepare the application
|
|
||||||
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
|
|
||||||
- name: Run Migration
|
|
||||||
run: |
|
|
||||||
if [ ! -e phinx.yml ]; then vendor/bin/phinx init; fi
|
|
||||||
vendor/bin/phinx migrate
|
|
||||||
vendor/bin/phinx seed:run
|
|
||||||
env:
|
|
||||||
DB_PORT: ${{ job.services.postgres.ports['5432'] }}
|
|
||||||
- name: Run Tests
|
|
||||||
run: |
|
|
||||||
(cd public && nohup php -S $CODECEPTION_URL:$CODECEPTION_PORT > phalcon.log 2>&1 &)
|
|
||||||
vendor/bin/codecept build
|
|
||||||
vendor/bin/codecept run
|
|
||||||
env:
|
|
||||||
DB_PORT: ${{ job.services.postgres.ports['5432'] }}
|
|
||||||
@ -1,69 +0,0 @@
|
|||||||
# GitHub Action for roots/sage
|
|
||||||
name: Testing Sage
|
|
||||||
on: [push, pull_request]
|
|
||||||
jobs:
|
|
||||||
sage:
|
|
||||||
name: Sage (PHP ${{ matrix.php-versions }} & Node ${{ matrix.node-versions }})
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
php-versions: ['7.4', '8.0', '8.1']
|
|
||||||
node-versions: ['16']
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
|
|
||||||
- name: Setup Node.js
|
|
||||||
uses: actions/setup-node@v5
|
|
||||||
with:
|
|
||||||
node-version: ${{ matrix.node-versions }}
|
|
||||||
|
|
||||||
# Docs: https://github.com/shivammathur/setup-php
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: ${{ matrix.php-versions }}
|
|
||||||
extensions: mbstring
|
|
||||||
|
|
||||||
- name: Check node versions
|
|
||||||
run: node -v
|
|
||||||
|
|
||||||
- name: Get yarn cache
|
|
||||||
id: yarn-cache
|
|
||||||
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.yarn-cache.outputs.dir }}
|
|
||||||
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
|
||||||
restore-keys: ${{ runner.os }}-yarn-
|
|
||||||
|
|
||||||
- name: Get composer cache directory
|
|
||||||
id: composer-cache
|
|
||||||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Cache composer dependencies
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.composer-cache.outputs.dir }}
|
|
||||||
# Use composer.json for key, if composer.lock is not committed.
|
|
||||||
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
|
||||||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
||||||
restore-keys: ${{ runner.os }}-composer-
|
|
||||||
|
|
||||||
- name: Install yarn dependencies
|
|
||||||
run: yarn -V
|
|
||||||
|
|
||||||
- name: Install Composer dependencies
|
|
||||||
run: composer install --no-progress --prefer-dist --optimize-autoloader
|
|
||||||
|
|
||||||
- name: Yarn test and build
|
|
||||||
run: |
|
|
||||||
yarn run test
|
|
||||||
yarn run build
|
|
||||||
yarn run rmdist
|
|
||||||
yarn run "build:production"
|
|
||||||
|
|
||||||
- name: PHP test
|
|
||||||
run: composer test
|
|
||||||
@ -1,40 +0,0 @@
|
|||||||
# GitHub Action for Slim Framework
|
|
||||||
name: Testing Slim Framework
|
|
||||||
on: [push, pull_request]
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
operating-system: [ubuntu-latest, windows-latest, macos-latest]
|
|
||||||
php-versions: ['7.4', '8.0', '8.1']
|
|
||||||
runs-on: ${{ matrix.operating-system }}
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
|
|
||||||
# Docs: https://github.com/shivammathur/setup-php
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: ${{ matrix.php-versions }}
|
|
||||||
extensions: mbstring, simplexml, dom
|
|
||||||
coverage: xdebug
|
|
||||||
|
|
||||||
- name: Get composer cache directory
|
|
||||||
id: composer-cache
|
|
||||||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Cache composer dependencies
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.composer-cache.outputs.dir }}
|
|
||||||
# Use composer.json for key, if composer.lock is not committed.
|
|
||||||
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
|
||||||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
||||||
restore-keys: ${{ runner.os }}-composer-
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: composer install --no-progress --prefer-dist --optimize-autoloader
|
|
||||||
|
|
||||||
- name: Test with phpunit
|
|
||||||
run: vendor/bin/phpunit --coverage-text
|
|
||||||
@ -1,70 +0,0 @@
|
|||||||
# GitHub Action for Symfony with MySQL
|
|
||||||
name: Testing Symfony with MySQL
|
|
||||||
on: [push, pull_request]
|
|
||||||
jobs:
|
|
||||||
symfony:
|
|
||||||
name: Symfony (PHP ${{ matrix.php-versions }})
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
# Docs: https://docs.github.com/en/actions/using-containerized-services
|
|
||||||
services:
|
|
||||||
mysql:
|
|
||||||
image: mysql:latest
|
|
||||||
env:
|
|
||||||
MYSQL_ALLOW_EMPTY_PASSWORD: false
|
|
||||||
MYSQL_ROOT_PASSWORD: symfony
|
|
||||||
MYSQL_DATABASE: symfony
|
|
||||||
ports:
|
|
||||||
- 3306/tcp
|
|
||||||
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
php-versions: ['7.4', '8.0', '8.1']
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
|
|
||||||
# Docs: https://github.com/shivammathur/setup-php
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: ${{ matrix.php-versions }}
|
|
||||||
tools: phpunit-bridge
|
|
||||||
extensions: mbstring, xml, ctype, iconv, intl, pdo_sqlite, mysql
|
|
||||||
coverage: xdebug
|
|
||||||
|
|
||||||
# Local MySQL service in GitHub hosted environments is disabled by default.
|
|
||||||
# If you are using it instead of service containers, make sure you start it.
|
|
||||||
# - name: Start mysql service
|
|
||||||
# run: sudo systemctl start mysql.service
|
|
||||||
|
|
||||||
- name: Get composer cache directory
|
|
||||||
id: composer-cache
|
|
||||||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Cache composer dependencies
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.composer-cache.outputs.dir }}
|
|
||||||
# Use composer.json for key, if composer.lock is not committed.
|
|
||||||
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
|
||||||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
||||||
restore-keys: ${{ runner.os }}-composer-
|
|
||||||
|
|
||||||
- name: Install Composer dependencies
|
|
||||||
run: composer install --no-progress --prefer-dist --optimize-autoloader
|
|
||||||
|
|
||||||
- name: Run Migration
|
|
||||||
run: |
|
|
||||||
composer require --dev symfony/orm-pack
|
|
||||||
php bin/console doctrine:schema:update --force || echo "No migrations found or schema update failed"
|
|
||||||
php bin/console doctrine:migrations:migrate || echo "No migrations found or migration failed"
|
|
||||||
env:
|
|
||||||
DATABASE_URL: mysql://root:symfony@127.0.0.1:${{ job.services.mysql.ports['3306'] }}/symfony
|
|
||||||
|
|
||||||
- name: Install PHPUnit
|
|
||||||
run: simple-phpunit install
|
|
||||||
|
|
||||||
- name: Run tests
|
|
||||||
run: simple-phpunit --coverage-text
|
|
||||||
@ -1,70 +0,0 @@
|
|||||||
# GitHub Action for Symfony with PostgreSQL
|
|
||||||
name: Testing Symfony with PostgreSQL
|
|
||||||
on: [push, pull_request]
|
|
||||||
jobs:
|
|
||||||
symfony:
|
|
||||||
name: Symfony (PHP ${{ matrix.php-versions }})
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
# Docs: https://docs.github.com/en/actions/using-containerized-services
|
|
||||||
services:
|
|
||||||
postgres:
|
|
||||||
image: postgres:latest
|
|
||||||
env:
|
|
||||||
POSTGRES_USER: postgres
|
|
||||||
POSTGRES_PASSWORD: postgres
|
|
||||||
POSTGRES_DB: postgres
|
|
||||||
ports:
|
|
||||||
- 5432/tcp
|
|
||||||
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
php-versions: ['7.4', '8.0', '8.1']
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
|
|
||||||
# Docs: https://github.com/shivammathur/setup-php
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: ${{ matrix.php-versions }}
|
|
||||||
tools: phpunit-bridge
|
|
||||||
extensions: mbstring, xml, ctype, iconv, intl, pdo_sqlite, pgsql
|
|
||||||
coverage: xdebug
|
|
||||||
|
|
||||||
# Local PostgreSQL service in GitHub hosted environments is disabled by default.
|
|
||||||
# If you are using it instead of service containers, make sure you start it.
|
|
||||||
# - name: Start postgresql service
|
|
||||||
# run: sudo systemctl start postgresql.service
|
|
||||||
|
|
||||||
- name: Get composer cache directory
|
|
||||||
id: composer-cache
|
|
||||||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Cache composer dependencies
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.composer-cache.outputs.dir }}
|
|
||||||
# Use composer.json for key, if composer.lock is not committed.
|
|
||||||
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
|
||||||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
||||||
restore-keys: ${{ runner.os }}-composer-
|
|
||||||
|
|
||||||
- name: Install Composer dependencies
|
|
||||||
run: composer install --no-progress --prefer-dist --optimize-autoloader
|
|
||||||
|
|
||||||
- name: Run Migration
|
|
||||||
run: |
|
|
||||||
composer require --dev symfony/orm-pack
|
|
||||||
php bin/console doctrine:schema:update --force || echo "No migrations found or schema update failed"
|
|
||||||
php bin/console doctrine:migrations:migrate || echo "No migrations found or migration failed"
|
|
||||||
env:
|
|
||||||
DATABASE_URL: postgres://postgres:postgres@127.0.0.1:${{ job.services.postgres.ports[5432] }}/postgres?charset=UTF-8
|
|
||||||
|
|
||||||
- name: Install PHPUnit
|
|
||||||
run: simple-phpunit install
|
|
||||||
|
|
||||||
- name: Run tests
|
|
||||||
run: simple-phpunit --coverage-text
|
|
||||||
@ -1,46 +0,0 @@
|
|||||||
# GitHub Action for Symfony
|
|
||||||
name: Testing Symfony
|
|
||||||
on: [push, pull_request]
|
|
||||||
jobs:
|
|
||||||
symfony:
|
|
||||||
name: Symfony (PHP ${{ matrix.php-versions }} on ${{ matrix.operating-system }})
|
|
||||||
runs-on: ${{ matrix.operating-system }}
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
operating-system: [ubuntu-latest, windows-latest, macos-latest]
|
|
||||||
php-versions: ['7.4', '8.0', '8.1']
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
|
|
||||||
# Docs: https://github.com/shivammathur/setup-php
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: ${{ matrix.php-versions }}
|
|
||||||
tools: phpunit-bridge
|
|
||||||
extensions: mbstring, xml, ctype, iconv, intl, pdo_sqlite
|
|
||||||
coverage: xdebug
|
|
||||||
|
|
||||||
- name: Get composer cache directory
|
|
||||||
id: composer-cache
|
|
||||||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Cache composer dependencies
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.composer-cache.outputs.dir }}
|
|
||||||
# Use composer.json for key, if composer.lock is not committed.
|
|
||||||
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
|
||||||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
||||||
restore-keys: ${{ runner.os }}-composer-
|
|
||||||
|
|
||||||
- name: Install Composer dependencies
|
|
||||||
run: composer install --no-progress --prefer-dist --optimize-autoloader
|
|
||||||
|
|
||||||
- name: Install PHPUnit
|
|
||||||
run: simple-phpunit install
|
|
||||||
|
|
||||||
- name: Run tests
|
|
||||||
run: simple-phpunit --coverage-text
|
|
||||||
@ -1,86 +0,0 @@
|
|||||||
# GitHub Action for Yii Framework with MySQL
|
|
||||||
name: Testing Yii2 with MySQL
|
|
||||||
on: [push, pull_request]
|
|
||||||
jobs:
|
|
||||||
yii:
|
|
||||||
name: Yii2 (PHP ${{ matrix.php-versions }})
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
env:
|
|
||||||
DB_USERNAME: root
|
|
||||||
DB_PASSWORD: yii
|
|
||||||
TEST_DB_USERNAME: root
|
|
||||||
TEST_DB_PASSWORD: yii
|
|
||||||
DB_CHARSET: utf8
|
|
||||||
|
|
||||||
# Docs: https://docs.github.com/en/actions/using-containerized-services
|
|
||||||
services:
|
|
||||||
mysql:
|
|
||||||
image: mysql:latest
|
|
||||||
env:
|
|
||||||
MYSQL_ALLOW_EMPTY_PASSWORD: false
|
|
||||||
MYSQL_ROOT_PASSWORD: yii
|
|
||||||
MYSQL_DATABASE: yii
|
|
||||||
ports:
|
|
||||||
- 3306/tcp
|
|
||||||
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
php-versions: ['7.4', '8.0']
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
|
|
||||||
- name: Set Node.js 10.x
|
|
||||||
uses: actions/setup-node@v5
|
|
||||||
with:
|
|
||||||
node-version: 10.x
|
|
||||||
|
|
||||||
# Docs: https://github.com/shivammathur/setup-php
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: ${{ matrix.php-versions }}
|
|
||||||
extensions: mbstring, intl, gd, imagick, zip, dom, mysql
|
|
||||||
coverage: xdebug
|
|
||||||
|
|
||||||
# Local MySQL service in GitHub hosted environments is disabled by default.
|
|
||||||
# If you are using it instead of service containers, make sure you start it.
|
|
||||||
# - name: Start mysql service
|
|
||||||
# run: sudo systemctl start mysql.service
|
|
||||||
|
|
||||||
- name: Get composer cache directory
|
|
||||||
id: composer-cache
|
|
||||||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Cache composer dependencies
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.composer-cache.outputs.dir }}
|
|
||||||
# Use composer.json for key, if composer.lock is not committed.
|
|
||||||
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
|
||||||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
||||||
restore-keys: ${{ runner.os }}-composer-
|
|
||||||
|
|
||||||
- name: Install Composer dependencies
|
|
||||||
run: composer install --no-progress --prefer-dist --optimize-autoloader
|
|
||||||
|
|
||||||
- name: Prepare the application
|
|
||||||
run: |
|
|
||||||
php -r "file_exists('.env') || copy('.env.dist', '.env');"
|
|
||||||
php console/yii app/setup
|
|
||||||
npm install --development
|
|
||||||
npm run build
|
|
||||||
env:
|
|
||||||
DB_DSN: mysql:host=127.0.0.1;port=${{ job.services.mysql.ports['3306'] }};dbname=yii
|
|
||||||
TEST_DB_DSN: mysql:host=127.0.0.1;port=${{ job.services.mysql.ports['3306'] }};dbname=yii
|
|
||||||
|
|
||||||
- name: Run Tests
|
|
||||||
run: |
|
|
||||||
vendor/bin/codecept build
|
|
||||||
php tests/bin/yii app/setup --interactive=0
|
|
||||||
nohup php -S localhost:8080 > yii.log 2>&1 &
|
|
||||||
vendor/bin/codecept run
|
|
||||||
env:
|
|
||||||
DB_DSN: mysql:host=127.0.0.1;port=${{ job.services.mysql.ports['3306'] }};dbname=yii
|
|
||||||
TEST_DB_DSN: mysql:host=127.0.0.1;port=${{ job.services.mysql.ports['3306'] }};dbname=yii
|
|
||||||
@ -1,86 +0,0 @@
|
|||||||
# GitHub Action for Yii Framework with PostgreSQL
|
|
||||||
name: Testing Yii2 with PostgreSQL
|
|
||||||
on: [push, pull_request]
|
|
||||||
jobs:
|
|
||||||
yii:
|
|
||||||
name: Yii2 (PHP ${{ matrix.php-versions }})
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
env:
|
|
||||||
DB_USERNAME: postgres
|
|
||||||
DB_PASSWORD: postgres
|
|
||||||
TEST_DB_USERNAME: postgres
|
|
||||||
TEST_DB_PASSWORD: postgres
|
|
||||||
DB_CHARSET: utf8
|
|
||||||
|
|
||||||
# Docs: https://docs.github.com/en/actions/using-containerized-services
|
|
||||||
services:
|
|
||||||
postgres:
|
|
||||||
image: postgres:latest
|
|
||||||
env:
|
|
||||||
POSTGRES_USER: postgres
|
|
||||||
POSTGRES_PASSWORD: postgres
|
|
||||||
POSTGRES_DB: postgres
|
|
||||||
ports:
|
|
||||||
- 5432/tcp
|
|
||||||
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
php-versions: ['7.4', '8.0']
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v6
|
|
||||||
|
|
||||||
- name: Set Node.js 10.x
|
|
||||||
uses: actions/setup-node@v5
|
|
||||||
with:
|
|
||||||
node-version: 10.x
|
|
||||||
|
|
||||||
# Docs: https://github.com/shivammathur/setup-php
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: ${{ matrix.php-versions }}
|
|
||||||
extensions: mbstring, intl, gd, imagick, zip, dom, pgsql
|
|
||||||
coverage: xdebug
|
|
||||||
|
|
||||||
# Local PostgreSQL service in GitHub hosted environments is disabled by default.
|
|
||||||
# If you are using it instead of service containers, make sure you start it.
|
|
||||||
# - name: Start postgresql service
|
|
||||||
# run: sudo systemctl start postgresql.service
|
|
||||||
|
|
||||||
- name: Get composer cache directory
|
|
||||||
id: composer-cache
|
|
||||||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Cache composer dependencies
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.composer-cache.outputs.dir }}
|
|
||||||
# Use composer.json for key, if composer.lock is not committed.
|
|
||||||
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
|
||||||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
||||||
restore-keys: ${{ runner.os }}-composer-
|
|
||||||
|
|
||||||
- name: Install Composer dependencies
|
|
||||||
run: composer install --no-progress --prefer-dist --optimize-autoloader
|
|
||||||
|
|
||||||
- name: Prepare the application
|
|
||||||
run: |
|
|
||||||
php -r "file_exists('.env') || copy('.env.dist', '.env');"
|
|
||||||
php console/yii app/setup
|
|
||||||
npm install --development
|
|
||||||
npm run build
|
|
||||||
env:
|
|
||||||
DB_DSN: pgsql:host=127.0.0.1;port=${{ job.services.postgres.ports['5432'] }};dbname=postgres
|
|
||||||
TEST_DB_DSN: pgsql:host=127.0.0.1;port=${{ job.services.postgres.ports['5432'] }};dbname=postgres
|
|
||||||
|
|
||||||
- name: Run Tests
|
|
||||||
run: |
|
|
||||||
vendor/bin/codecept build
|
|
||||||
php tests/bin/yii app/setup --interactive=0
|
|
||||||
nohup php -S localhost:8080 > yii.log 2>&1 &
|
|
||||||
vendor/bin/codecept run
|
|
||||||
env:
|
|
||||||
DB_DSN: pgsql:host=127.0.0.1;port=${{ job.services.postgres.ports['5432'] }};dbname=postgres
|
|
||||||
TEST_DB_DSN: pgsql:host=127.0.0.1;port=${{ job.services.postgres.ports['5432'] }};dbname=postgres
|
|
||||||
@ -7,6 +7,5 @@ module.exports = {
|
|||||||
transform: {
|
transform: {
|
||||||
'^.+\\.ts$': 'ts-jest'
|
'^.+\\.ts$': 'ts-jest'
|
||||||
},
|
},
|
||||||
verbose: true,
|
verbose: true
|
||||||
collectCoverage: true
|
}
|
||||||
};
|
|
||||||
64
lib/install.js
Normal file
64
lib/install.js
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
"use strict";
|
||||||
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
||||||
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||||
|
return new (P || (P = Promise))(function (resolve, reject) {
|
||||||
|
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||||
|
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||||
|
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||||
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||||
|
});
|
||||||
|
};
|
||||||
|
var __importStar = (this && this.__importStar) || function (mod) {
|
||||||
|
if (mod && mod.__esModule) return mod;
|
||||||
|
var result = {};
|
||||||
|
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
|
||||||
|
result["default"] = mod;
|
||||||
|
return result;
|
||||||
|
};
|
||||||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
|
const core = __importStar(require("@actions/core"));
|
||||||
|
const exec_1 = require("@actions/exec/lib/exec");
|
||||||
|
var https = require('https');
|
||||||
|
const fs = require('fs');
|
||||||
|
function get_file(filename) {
|
||||||
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
|
let github_path = 'https://raw.githubusercontent.com/shivammathur/setup-php/develop/src/';
|
||||||
|
const file = fs.createWriteStream(filename);
|
||||||
|
const request = https.get(github_path + filename, function (response) {
|
||||||
|
response.pipe(file);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function run() {
|
||||||
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
|
try {
|
||||||
|
let version = process.env['php-version'];
|
||||||
|
if (!version) {
|
||||||
|
version = core.getInput('php-version', { required: true });
|
||||||
|
}
|
||||||
|
console.log('Input: ' + version);
|
||||||
|
let os_version = process.platform;
|
||||||
|
if (os_version == 'darwin') {
|
||||||
|
yield get_file('darwin.sh');
|
||||||
|
yield exec_1.exec('sudo chmod a+x darwin.sh');
|
||||||
|
yield exec_1.exec('./darwin.sh ' + version);
|
||||||
|
}
|
||||||
|
else if (os_version == 'win32') {
|
||||||
|
yield get_file('windows.ps1');
|
||||||
|
yield exec_1.exec('DIR');
|
||||||
|
yield exec_1.exec('powershell .\\windows.ps1 -version ' + version);
|
||||||
|
}
|
||||||
|
else if (os_version == 'linux') {
|
||||||
|
yield get_file('linux.sh');
|
||||||
|
yield exec_1.exec('sudo chmod a+x linux.sh');
|
||||||
|
yield exec_1.exec('./linux.sh ' + version);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (err) {
|
||||||
|
core.setFailed(err.message);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
run().then(() => {
|
||||||
|
console.log('done');
|
||||||
|
});
|
||||||
58
lib/src/install.js
Normal file
58
lib/src/install.js
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
"use strict";
|
||||||
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
||||||
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||||
|
return new (P || (P = Promise))(function (resolve, reject) {
|
||||||
|
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||||
|
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||||
|
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||||
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||||
|
});
|
||||||
|
};
|
||||||
|
var __importStar = (this && this.__importStar) || function (mod) {
|
||||||
|
if (mod && mod.__esModule) return mod;
|
||||||
|
var result = {};
|
||||||
|
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
|
||||||
|
result["default"] = mod;
|
||||||
|
return result;
|
||||||
|
};
|
||||||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
|
const core = __importStar(require("@actions/core"));
|
||||||
|
const exec_1 = require("@actions/exec/lib/exec");
|
||||||
|
var https = require('https');
|
||||||
|
const fs = require('fs');
|
||||||
|
function get_file(filename) {
|
||||||
|
let github_path = 'https://raw.githubusercontent.com/shivammathur/setup-php/develop/src/';
|
||||||
|
const file = fs.createWriteStream(filename);
|
||||||
|
const request = https.get(github_path + filename, function (response) {
|
||||||
|
response.pipe(file);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function run() {
|
||||||
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
|
try {
|
||||||
|
const version = core.getInput('php-version', { required: true });
|
||||||
|
console.log('Input: ' + version);
|
||||||
|
let os_version = process.platform;
|
||||||
|
if (os_version == 'darwin') {
|
||||||
|
get_file('darwin.sh');
|
||||||
|
yield exec_1.exec('sudo chmod a+x darwin.sh');
|
||||||
|
yield exec_1.exec('./darwin.sh ' + version);
|
||||||
|
}
|
||||||
|
else if (os_version == 'win32') {
|
||||||
|
get_file('windows.ps1');
|
||||||
|
yield exec_1.exec('powershell windows.ps1 -version ' + version);
|
||||||
|
}
|
||||||
|
else if (os_version == 'linux') {
|
||||||
|
get_file('linux.sh');
|
||||||
|
yield exec_1.exec('sudo chmod a+x linux.sh');
|
||||||
|
yield exec_1.exec('./linux.sh ' + version);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (err) {
|
||||||
|
core.setFailed(err.message);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
run().then(() => {
|
||||||
|
console.log('done');
|
||||||
|
});
|
||||||
4
lib/test.js
Normal file
4
lib/test.js
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
"use strict";
|
||||||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
|
let v = process.env['php-version'];
|
||||||
|
console.log(v);
|
||||||
15
node_modules/.bin/acorn
generated
vendored
Normal file
15
node_modules/.bin/acorn
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
"$basedir/node" "$basedir/../acorn/bin/acorn" "$@"
|
||||||
|
ret=$?
|
||||||
|
else
|
||||||
|
node "$basedir/../acorn/bin/acorn" "$@"
|
||||||
|
ret=$?
|
||||||
|
fi
|
||||||
|
exit $ret
|
||||||
7
node_modules/.bin/acorn.cmd
generated
vendored
Normal file
7
node_modules/.bin/acorn.cmd
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
@IF EXIST "%~dp0\node.exe" (
|
||||||
|
"%~dp0\node.exe" "%~dp0\..\acorn\bin\acorn" %*
|
||||||
|
) ELSE (
|
||||||
|
@SETLOCAL
|
||||||
|
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
node "%~dp0\..\acorn\bin\acorn" %*
|
||||||
|
)
|
||||||
15
node_modules/.bin/atob
generated
vendored
Normal file
15
node_modules/.bin/atob
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
"$basedir/node" "$basedir/../atob/bin/atob.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
else
|
||||||
|
node "$basedir/../atob/bin/atob.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
fi
|
||||||
|
exit $ret
|
||||||
7
node_modules/.bin/atob.cmd
generated
vendored
Normal file
7
node_modules/.bin/atob.cmd
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
@IF EXIST "%~dp0\node.exe" (
|
||||||
|
"%~dp0\node.exe" "%~dp0\..\atob\bin\atob.js" %*
|
||||||
|
) ELSE (
|
||||||
|
@SETLOCAL
|
||||||
|
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
node "%~dp0\..\atob\bin\atob.js" %*
|
||||||
|
)
|
||||||
15
node_modules/.bin/escodegen
generated
vendored
Normal file
15
node_modules/.bin/escodegen
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
"$basedir/node" "$basedir/../escodegen/bin/escodegen.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
else
|
||||||
|
node "$basedir/../escodegen/bin/escodegen.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
fi
|
||||||
|
exit $ret
|
||||||
7
node_modules/.bin/escodegen.cmd
generated
vendored
Normal file
7
node_modules/.bin/escodegen.cmd
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
@IF EXIST "%~dp0\node.exe" (
|
||||||
|
"%~dp0\node.exe" "%~dp0\..\escodegen\bin\escodegen.js" %*
|
||||||
|
) ELSE (
|
||||||
|
@SETLOCAL
|
||||||
|
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
node "%~dp0\..\escodegen\bin\escodegen.js" %*
|
||||||
|
)
|
||||||
15
node_modules/.bin/esgenerate
generated
vendored
Normal file
15
node_modules/.bin/esgenerate
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
"$basedir/node" "$basedir/../escodegen/bin/esgenerate.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
else
|
||||||
|
node "$basedir/../escodegen/bin/esgenerate.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
fi
|
||||||
|
exit $ret
|
||||||
7
node_modules/.bin/esgenerate.cmd
generated
vendored
Normal file
7
node_modules/.bin/esgenerate.cmd
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
@IF EXIST "%~dp0\node.exe" (
|
||||||
|
"%~dp0\node.exe" "%~dp0\..\escodegen\bin\esgenerate.js" %*
|
||||||
|
) ELSE (
|
||||||
|
@SETLOCAL
|
||||||
|
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
node "%~dp0\..\escodegen\bin\esgenerate.js" %*
|
||||||
|
)
|
||||||
15
node_modules/.bin/esparse
generated
vendored
Normal file
15
node_modules/.bin/esparse
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
"$basedir/node" "$basedir/../esprima/bin/esparse.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
else
|
||||||
|
node "$basedir/../esprima/bin/esparse.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
fi
|
||||||
|
exit $ret
|
||||||
7
node_modules/.bin/esparse.cmd
generated
vendored
Normal file
7
node_modules/.bin/esparse.cmd
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
@IF EXIST "%~dp0\node.exe" (
|
||||||
|
"%~dp0\node.exe" "%~dp0\..\esprima\bin\esparse.js" %*
|
||||||
|
) ELSE (
|
||||||
|
@SETLOCAL
|
||||||
|
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
node "%~dp0\..\esprima\bin\esparse.js" %*
|
||||||
|
)
|
||||||
15
node_modules/.bin/esvalidate
generated
vendored
Normal file
15
node_modules/.bin/esvalidate
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
"$basedir/node" "$basedir/../esprima/bin/esvalidate.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
else
|
||||||
|
node "$basedir/../esprima/bin/esvalidate.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
fi
|
||||||
|
exit $ret
|
||||||
7
node_modules/.bin/esvalidate.cmd
generated
vendored
Normal file
7
node_modules/.bin/esvalidate.cmd
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
@IF EXIST "%~dp0\node.exe" (
|
||||||
|
"%~dp0\node.exe" "%~dp0\..\esprima\bin\esvalidate.js" %*
|
||||||
|
) ELSE (
|
||||||
|
@SETLOCAL
|
||||||
|
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
node "%~dp0\..\esprima\bin\esvalidate.js" %*
|
||||||
|
)
|
||||||
15
node_modules/.bin/handlebars
generated
vendored
Normal file
15
node_modules/.bin/handlebars
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
"$basedir/node" "$basedir/../handlebars/bin/handlebars" "$@"
|
||||||
|
ret=$?
|
||||||
|
else
|
||||||
|
node "$basedir/../handlebars/bin/handlebars" "$@"
|
||||||
|
ret=$?
|
||||||
|
fi
|
||||||
|
exit $ret
|
||||||
7
node_modules/.bin/handlebars.cmd
generated
vendored
Normal file
7
node_modules/.bin/handlebars.cmd
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
@IF EXIST "%~dp0\node.exe" (
|
||||||
|
"%~dp0\node.exe" "%~dp0\..\handlebars\bin\handlebars" %*
|
||||||
|
) ELSE (
|
||||||
|
@SETLOCAL
|
||||||
|
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
node "%~dp0\..\handlebars\bin\handlebars" %*
|
||||||
|
)
|
||||||
15
node_modules/.bin/husky-upgrade
generated
vendored
Normal file
15
node_modules/.bin/husky-upgrade
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
"$basedir/node" "$basedir/../husky/lib/upgrader/bin.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
else
|
||||||
|
node "$basedir/../husky/lib/upgrader/bin.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
fi
|
||||||
|
exit $ret
|
||||||
7
node_modules/.bin/husky-upgrade.cmd
generated
vendored
Normal file
7
node_modules/.bin/husky-upgrade.cmd
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
@IF EXIST "%~dp0\node.exe" (
|
||||||
|
"%~dp0\node.exe" "%~dp0\..\husky\lib\upgrader\bin.js" %*
|
||||||
|
) ELSE (
|
||||||
|
@SETLOCAL
|
||||||
|
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
node "%~dp0\..\husky\lib\upgrader\bin.js" %*
|
||||||
|
)
|
||||||
15
node_modules/.bin/import-local-fixture
generated
vendored
Normal file
15
node_modules/.bin/import-local-fixture
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
"$basedir/node" "$basedir/../import-local/fixtures/cli.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
else
|
||||||
|
node "$basedir/../import-local/fixtures/cli.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
fi
|
||||||
|
exit $ret
|
||||||
7
node_modules/.bin/import-local-fixture.cmd
generated
vendored
Normal file
7
node_modules/.bin/import-local-fixture.cmd
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
@IF EXIST "%~dp0\node.exe" (
|
||||||
|
"%~dp0\node.exe" "%~dp0\..\import-local\fixtures\cli.js" %*
|
||||||
|
) ELSE (
|
||||||
|
@SETLOCAL
|
||||||
|
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
node "%~dp0\..\import-local\fixtures\cli.js" %*
|
||||||
|
)
|
||||||
15
node_modules/.bin/is-ci
generated
vendored
Normal file
15
node_modules/.bin/is-ci
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
"$basedir/node" "$basedir/../is-ci/bin.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
else
|
||||||
|
node "$basedir/../is-ci/bin.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
fi
|
||||||
|
exit $ret
|
||||||
7
node_modules/.bin/is-ci.cmd
generated
vendored
Normal file
7
node_modules/.bin/is-ci.cmd
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
@IF EXIST "%~dp0\node.exe" (
|
||||||
|
"%~dp0\node.exe" "%~dp0\..\is-ci\bin.js" %*
|
||||||
|
) ELSE (
|
||||||
|
@SETLOCAL
|
||||||
|
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
node "%~dp0\..\is-ci\bin.js" %*
|
||||||
|
)
|
||||||
15
node_modules/.bin/jest
generated
vendored
Normal file
15
node_modules/.bin/jest
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
"$basedir/node" "$basedir/../jest/bin/jest.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
else
|
||||||
|
node "$basedir/../jest/bin/jest.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
fi
|
||||||
|
exit $ret
|
||||||
15
node_modules/.bin/jest-runtime
generated
vendored
Normal file
15
node_modules/.bin/jest-runtime
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
"$basedir/node" "$basedir/../jest-runtime/bin/jest-runtime.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
else
|
||||||
|
node "$basedir/../jest-runtime/bin/jest-runtime.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
fi
|
||||||
|
exit $ret
|
||||||
7
node_modules/.bin/jest-runtime.cmd
generated
vendored
Normal file
7
node_modules/.bin/jest-runtime.cmd
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
@IF EXIST "%~dp0\node.exe" (
|
||||||
|
"%~dp0\node.exe" "%~dp0\..\jest-runtime\bin\jest-runtime.js" %*
|
||||||
|
) ELSE (
|
||||||
|
@SETLOCAL
|
||||||
|
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
node "%~dp0\..\jest-runtime\bin\jest-runtime.js" %*
|
||||||
|
)
|
||||||
7
node_modules/.bin/jest.cmd
generated
vendored
Normal file
7
node_modules/.bin/jest.cmd
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
@IF EXIST "%~dp0\node.exe" (
|
||||||
|
"%~dp0\node.exe" "%~dp0\..\jest\bin\jest.js" %*
|
||||||
|
) ELSE (
|
||||||
|
@SETLOCAL
|
||||||
|
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
node "%~dp0\..\jest\bin\jest.js" %*
|
||||||
|
)
|
||||||
15
node_modules/.bin/js-yaml
generated
vendored
Normal file
15
node_modules/.bin/js-yaml
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
"$basedir/node" "$basedir/../js-yaml/bin/js-yaml.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
else
|
||||||
|
node "$basedir/../js-yaml/bin/js-yaml.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
fi
|
||||||
|
exit $ret
|
||||||
7
node_modules/.bin/js-yaml.cmd
generated
vendored
Normal file
7
node_modules/.bin/js-yaml.cmd
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
@IF EXIST "%~dp0\node.exe" (
|
||||||
|
"%~dp0\node.exe" "%~dp0\..\js-yaml\bin\js-yaml.js" %*
|
||||||
|
) ELSE (
|
||||||
|
@SETLOCAL
|
||||||
|
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
node "%~dp0\..\js-yaml\bin\js-yaml.js" %*
|
||||||
|
)
|
||||||
15
node_modules/.bin/jsesc
generated
vendored
Normal file
15
node_modules/.bin/jsesc
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
"$basedir/node" "$basedir/../jsesc/bin/jsesc" "$@"
|
||||||
|
ret=$?
|
||||||
|
else
|
||||||
|
node "$basedir/../jsesc/bin/jsesc" "$@"
|
||||||
|
ret=$?
|
||||||
|
fi
|
||||||
|
exit $ret
|
||||||
7
node_modules/.bin/jsesc.cmd
generated
vendored
Normal file
7
node_modules/.bin/jsesc.cmd
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
@IF EXIST "%~dp0\node.exe" (
|
||||||
|
"%~dp0\node.exe" "%~dp0\..\jsesc\bin\jsesc" %*
|
||||||
|
) ELSE (
|
||||||
|
@SETLOCAL
|
||||||
|
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
node "%~dp0\..\jsesc\bin\jsesc" %*
|
||||||
|
)
|
||||||
15
node_modules/.bin/json5
generated
vendored
Normal file
15
node_modules/.bin/json5
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
"$basedir/node" "$basedir/../json5/lib/cli.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
else
|
||||||
|
node "$basedir/../json5/lib/cli.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
fi
|
||||||
|
exit $ret
|
||||||
7
node_modules/.bin/json5.cmd
generated
vendored
Normal file
7
node_modules/.bin/json5.cmd
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
@IF EXIST "%~dp0\node.exe" (
|
||||||
|
"%~dp0\node.exe" "%~dp0\..\json5\lib\cli.js" %*
|
||||||
|
) ELSE (
|
||||||
|
@SETLOCAL
|
||||||
|
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
node "%~dp0\..\json5\lib\cli.js" %*
|
||||||
|
)
|
||||||
15
node_modules/.bin/loose-envify
generated
vendored
Normal file
15
node_modules/.bin/loose-envify
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
"$basedir/node" "$basedir/../loose-envify/cli.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
else
|
||||||
|
node "$basedir/../loose-envify/cli.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
fi
|
||||||
|
exit $ret
|
||||||
7
node_modules/.bin/loose-envify.cmd
generated
vendored
Normal file
7
node_modules/.bin/loose-envify.cmd
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
@IF EXIST "%~dp0\node.exe" (
|
||||||
|
"%~dp0\node.exe" "%~dp0\..\loose-envify\cli.js" %*
|
||||||
|
) ELSE (
|
||||||
|
@SETLOCAL
|
||||||
|
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
node "%~dp0\..\loose-envify\cli.js" %*
|
||||||
|
)
|
||||||
15
node_modules/.bin/mkdirp
generated
vendored
Normal file
15
node_modules/.bin/mkdirp
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
"$basedir/node" "$basedir/../mkdirp/bin/cmd.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
else
|
||||||
|
node "$basedir/../mkdirp/bin/cmd.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
fi
|
||||||
|
exit $ret
|
||||||
7
node_modules/.bin/mkdirp.cmd
generated
vendored
Normal file
7
node_modules/.bin/mkdirp.cmd
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
@IF EXIST "%~dp0\node.exe" (
|
||||||
|
"%~dp0\node.exe" "%~dp0\..\mkdirp\bin\cmd.js" %*
|
||||||
|
) ELSE (
|
||||||
|
@SETLOCAL
|
||||||
|
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
node "%~dp0\..\mkdirp\bin\cmd.js" %*
|
||||||
|
)
|
||||||
15
node_modules/.bin/parser
generated
vendored
Normal file
15
node_modules/.bin/parser
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
"$basedir/node" "$basedir/../@babel/parser/bin/babel-parser.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
else
|
||||||
|
node "$basedir/../@babel/parser/bin/babel-parser.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
fi
|
||||||
|
exit $ret
|
||||||
7
node_modules/.bin/parser.cmd
generated
vendored
Normal file
7
node_modules/.bin/parser.cmd
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
@IF EXIST "%~dp0\node.exe" (
|
||||||
|
"%~dp0\node.exe" "%~dp0\..\@babel\parser\bin\babel-parser.js" %*
|
||||||
|
) ELSE (
|
||||||
|
@SETLOCAL
|
||||||
|
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
node "%~dp0\..\@babel\parser\bin\babel-parser.js" %*
|
||||||
|
)
|
||||||
15
node_modules/.bin/prettier
generated
vendored
Normal file
15
node_modules/.bin/prettier
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
"$basedir/node" "$basedir/../prettier/bin-prettier.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
else
|
||||||
|
node "$basedir/../prettier/bin-prettier.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
fi
|
||||||
|
exit $ret
|
||||||
7
node_modules/.bin/prettier.cmd
generated
vendored
Normal file
7
node_modules/.bin/prettier.cmd
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
@IF EXIST "%~dp0\node.exe" (
|
||||||
|
"%~dp0\node.exe" "%~dp0\..\prettier\bin-prettier.js" %*
|
||||||
|
) ELSE (
|
||||||
|
@SETLOCAL
|
||||||
|
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
node "%~dp0\..\prettier\bin-prettier.js" %*
|
||||||
|
)
|
||||||
15
node_modules/.bin/rimraf
generated
vendored
Normal file
15
node_modules/.bin/rimraf
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
"$basedir/node" "$basedir/../rimraf/bin.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
else
|
||||||
|
node "$basedir/../rimraf/bin.js" "$@"
|
||||||
|
ret=$?
|
||||||
|
fi
|
||||||
|
exit $ret
|
||||||
7
node_modules/.bin/rimraf.cmd
generated
vendored
Normal file
7
node_modules/.bin/rimraf.cmd
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
@IF EXIST "%~dp0\node.exe" (
|
||||||
|
"%~dp0\node.exe" "%~dp0\..\rimraf\bin.js" %*
|
||||||
|
) ELSE (
|
||||||
|
@SETLOCAL
|
||||||
|
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
node "%~dp0\..\rimraf\bin.js" %*
|
||||||
|
)
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user