summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-crt-php/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/aws/aws-crt-php/.github/workflows')
-rw-r--r--vendor/aws/aws-crt-php/.github/workflows/ci.yml145
-rw-r--r--vendor/aws/aws-crt-php/.github/workflows/lint.yml29
-rw-r--r--vendor/aws/aws-crt-php/.github/workflows/stale_issue.yml46
3 files changed, 0 insertions, 220 deletions
diff --git a/vendor/aws/aws-crt-php/.github/workflows/ci.yml b/vendor/aws/aws-crt-php/.github/workflows/ci.yml
deleted file mode 100644
index 6a011db..0000000
--- a/vendor/aws/aws-crt-php/.github/workflows/ci.yml
+++ /dev/null
@@ -1,145 +0,0 @@
-name: CI
-
-on:
- push:
- branches:
- - '*'
- - '!main'
-
-env:
- BUILDER_VERSION: v0.8.18
- BUILDER_SOURCE: releases
- BUILDER_HOST: https://d19elf31gohf1l.cloudfront.net
- PACKAGE_NAME: aws-crt-php
- LINUX_BASE_IMAGE: ubuntu-16-x64
- RUN: ${{ github.run_id }}-${{ github.run_number }}
-
-jobs:
- php-5_5-linux-x64:
- name: php-linux-x64 (5.5)
- runs-on: ubuntu-latest
- steps:
- - name: Setup PHP with Xdebug
- uses: shivammathur/setup-php@v2
- with:
- coverage: xdebug
- php-version: 5.5
- ini-values: xdebug.overload_var_dump=0, memory_limit=4G, phar.readonly=false
-
- - name: Checkout
- uses: actions/checkout@v2
- with:
- submodules: recursive
-
- - name: Install ancient PHPUnit
- run: composer require --dev --ignore-platform-reqs phpunit/phpunit "4.8.36"
-
- - name: Install depedencies
- run: composer update --no-interaction
-
- - name: Build for PHP 5.5
- env:
- CC: clang
- CXX: clang++
- run: |
- phpize
- ./configure
- make
-
- php-linux-x64:
- runs-on: ubuntu-latest
- strategy:
- fail-fast: false
- matrix:
- version:
- - "5.6"
- - "7.0"
- - "7.1"
- - "7.2"
- - "7.3"
- - "7.4"
- - "8.0"
- steps:
- - name: Setup PHP with Xdebug
- uses: shivammathur/setup-php@v2
- with:
- coverage: xdebug
- php-version: ${{matrix.version}}
- ini-values: xdebug.overload_var_dump=0, memory_limit=4G, phar.readonly=false
-
- - name: Checkout
- uses: actions/checkout@v2
- with:
- submodules: recursive
-
- - name: Install depedencies
- run: composer update --no-interaction
-
- - name: Run tests
- env:
- CC: clang
- CXX: clang++
- run: |
- phpize
- ./configure
- make
- make test
-
-
- # linux-arm:
- # name: ARM (${{ matrix.arch }})
- # runs-on: ubuntu-latest
- # strategy:
- # matrix:
- # arch: [armv6, armv7, arm64]
- # steps:
- # - name: Build ${{ env.PACKAGE_NAME }}
- # run: |
- # python3 -c "from urllib.request import urlretrieve; urlretrieve('${{ env.BUILDER_HOST }}/${{ env.BUILDER_SOURCE }}/${{ env.BUILDER_VERSION }}/builder.pyz?run=${{ env.RUN }}', 'builder')"
- # chmod a+x builder
- # ./builder build -p ${{ env.PACKAGE_NAME }} --target=linux-${{ matrix.arch }} --spec=downstream
-
- # windows-vc16:
- # runs-on: windows-latest
- # strategy:
- # matrix:
- # arch: [x64]
- # steps:
- # - uses: ilammy/msvc-dev-cmd@v1
- # with:
- # arch: ${{ matrix.arch }}
- # uwp: false
- # spectre: true
- # - name: Build ${{ env.PACKAGE_NAME }} + consumers
- # run: |
- # python -c "from urllib.request import urlretrieve; urlretrieve('${{ env.BUILDER_HOST }}/${{ env.BUILDER_SOURCE }}/${{ env.BUILDER_VERSION }}/builder.pyz?run=${{ env.RUN }}', 'builder.pyz')"
- # python builder.pyz build -p ${{ env.PACKAGE_NAME }} --spec=downstream
-
- # windows-vc14:
- # runs-on: windows-latest
- # strategy:
- # matrix:
- # arch: [x86, x64]
- # steps:
- # - uses: ilammy/msvc-dev-cmd@v1
- # with:
- # toolset: 14.0
- # arch: ${{ matrix.arch }}
- # uwp: false
- # spectre: true
- # - name: Build ${{ env.PACKAGE_NAME }} + consumers
- # run: |
- # python -c "from urllib.request import urlretrieve; urlretrieve('${{ env.BUILDER_HOST }}/${{ env.BUILDER_SOURCE }}/${{ env.BUILDER_VERSION }}/builder.pyz?run=${{ env.RUN }}', 'builder.pyz')"
- # python builder.pyz build -p ${{ env.PACKAGE_NAME }} downstream
-
- macos:
- runs-on: macos-${{ matrix.version }}
- strategy:
- matrix:
- version: [10.15]
- steps:
- - name: Build PHP 8 extension and test
- run: |
- python3 -c "from urllib.request import urlretrieve; urlretrieve('${{ env.BUILDER_HOST }}/${{ env.BUILDER_SOURCE }}/${{ env.BUILDER_VERSION }}/builder.pyz?run=${{ env.RUN }}', 'builder')"
- chmod a+x builder
- ./builder build -p ${{ env.PACKAGE_NAME }} --spec=downstream
diff --git a/vendor/aws/aws-crt-php/.github/workflows/lint.yml b/vendor/aws/aws-crt-php/.github/workflows/lint.yml
deleted file mode 100644
index 5aa3ebd..0000000
--- a/vendor/aws/aws-crt-php/.github/workflows/lint.yml
+++ /dev/null
@@ -1,29 +0,0 @@
-name: Lint
-
-on: [push]
-
-jobs:
- clang-format:
-
- runs-on: ubuntu-latest
-
- steps:
- - name: Checkout Sources
- uses: actions/checkout@v1
-
- - name: clang-format lint
- uses: DoozyX/[email protected]
- with:
- # List of extensions to check
- extensions: c
-
- check-submodules:
- runs-on: ubuntu-latest
- steps:
- - name: Checkout Source
- uses: actions/checkout@v2
- with:
- submodules: true
- fetch-depth: 0
- - name: Check Submodules
- uses: awslabs/aws-crt-builder/.github/actions/check-submodules@main
diff --git a/vendor/aws/aws-crt-php/.github/workflows/stale_issue.yml b/vendor/aws/aws-crt-php/.github/workflows/stale_issue.yml
deleted file mode 100644
index b07016a..0000000
--- a/vendor/aws/aws-crt-php/.github/workflows/stale_issue.yml
+++ /dev/null
@@ -1,46 +0,0 @@
-name: "Close stale issues"
-
-# Controls when the action will run.
-on:
- schedule:
- - cron: "0 0 * * *"
-
-jobs:
- cleanup:
- runs-on: ubuntu-latest
- name: Stale issue job
- steps:
- - uses: aws-actions/stale-issue-cleanup@v3
- with:
- # Setting messages to an empty string will cause the automation to skip
- # that category
- ancient-issue-message: Greetings! Sorry to say but this is a very old issue that is probably not getting as much attention as it deservers. We encourage you to check if this is still an issue in the latest release and if you find that this is still a problem, please feel free to open a new one.
- stale-issue-message: Greetings! It looks like this issue hasn’t been active in longer than a week. We encourage you to check if this is still an issue in the latest release. Because it has been longer than a week since the last update on this, and in the absence of more information, we will be closing this issue soon. If you find that this is still a problem, please feel free to provide a comment or add an upvote to prevent automatic closure, or if the issue is already closed, please feel free to open a new one.
- stale-pr-message: Greetings! It looks like this PR hasn’t been active in longer than a week, add a comment or an upvote to prevent automatic closure, or if the issue is already closed, please feel free to open a new one.
-
- # These labels are required
- stale-issue-label: closing-soon
- exempt-issue-label: automation-exempt
- stale-pr-label: closing-soon
- exempt-pr-label: pr/needs-review
- response-requested-label: response-requested
-
- # Don't set closed-for-staleness label to skip closing very old issues
- # regardless of label
- closed-for-staleness-label: closed-for-staleness
-
- # Issue timing
- days-before-stale: 7
- days-before-close: 4
- days-before-ancient: 365
-
- # If you don't want to mark a issue as being ancient based on a
- # threshold of "upvotes", you can set this here. An "upvote" is
- # the total number of +1, heart, hooray, and rocket reactions
- # on an issue.
- minimum-upvotes-to-exempt: 1
-
- repo-token: ${{ secrets.GITHUB_TOKEN }}
- loglevel: DEBUG
- # Set dry-run to true to not perform label or close actions.
- dry-run: false