diff --git a/.gitignore b/.gitignore index 355342838..724c91060 100644 --- a/.gitignore +++ b/.gitignore @@ -36,6 +36,7 @@ doctrine/inflector/tests doctrine/lexer/composer.json doctrine/lexer/LICENSE +pear/archive_tar/.github pear/archive_tar/.travis.sh pear/archive_tar/.travis.yml pear/archive_tar/tests/ diff --git a/pear/archive_tar/.github/FUNDING.yml b/pear/archive_tar/.github/FUNDING.yml deleted file mode 100644 index 4a0f72b64..000000000 --- a/pear/archive_tar/.github/FUNDING.yml +++ /dev/null @@ -1,2 +0,0 @@ -github: [mrook] -patreon: michielrook diff --git a/pear/archive_tar/.github/dependabot.yml b/pear/archive_tar/.github/dependabot.yml deleted file mode 100644 index a51bb0bd4..000000000 --- a/pear/archive_tar/.github/dependabot.yml +++ /dev/null @@ -1,11 +0,0 @@ -# To get started with Dependabot version updates, you'll need to specify which -# package ecosystems to update and where the package manifests are located. -# Please see the documentation for all configuration options: -# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates - -version: 2 -updates: - - package-ecosystem: "composer" # See documentation for possible values - directory: "/" # Location of package manifests - schedule: - interval: "daily" diff --git a/pear/archive_tar/.github/workflows/build.yml b/pear/archive_tar/.github/workflows/build.yml deleted file mode 100644 index b972caea6..000000000 --- a/pear/archive_tar/.github/workflows/build.yml +++ /dev/null @@ -1,41 +0,0 @@ -on: - push: - branches: - - master - pull_request: - -jobs: - test: - runs-on: ${{ matrix.operating-system }} - strategy: - fail-fast: true - matrix: - operating-system: [ ubuntu-latest ] - php: [ '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0' ] - dependencies: [ 'locked' ] - - name: PHP ${{ matrix.php }} on ${{ matrix.operating-system }} with ${{ matrix.dependencies }} dependencies - - steps: - - uses: actions/checkout@v2 - name: Checkout repository - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php }} - - - uses: ramsey/composer-install@v1 - with: - dependency-versions: ${{ matrix.dependencies }} - - - name: Install PEAR - run: | - sudo apt-get install php-pear - - - name: Run tests - run: | - sudo pear install -f package.xml - pear version - pear run-tests -qr tests/ || cat run-tests.log - for i in `find tests/ -name '*.out'`; do echo "$i"; cat "$i"; done