summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-crt-php/.github
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/aws/aws-crt-php/.github')
-rw-r--r--vendor/aws/aws-crt-php/.github/ISSUE_TEMPLATE/---bug-report.md36
-rw-r--r--vendor/aws/aws-crt-php/.github/ISSUE_TEMPLATE/---feature-request.md20
-rw-r--r--vendor/aws/aws-crt-php/.github/ISSUE_TEMPLATE/---questions-help.md23
-rw-r--r--vendor/aws/aws-crt-php/.github/PULL_REQUEST_TEMPLATE.md6
-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
7 files changed, 0 insertions, 305 deletions
diff --git a/vendor/aws/aws-crt-php/.github/ISSUE_TEMPLATE/---bug-report.md b/vendor/aws/aws-crt-php/.github/ISSUE_TEMPLATE/---bug-report.md
deleted file mode 100644
index 4e6c128..0000000
--- a/vendor/aws/aws-crt-php/.github/ISSUE_TEMPLATE/---bug-report.md
+++ /dev/null
@@ -1,36 +0,0 @@
----
-name: "\U0001F41B Bug report"
-about: Create a report to help us improve
-title: ''
-labels: bug, needs-triage
-assignees: ''
-
----
-
-Confirm by changing [ ] to [x] below to ensure that it's a bug:
-- [ ] I've gone though [Developer Guide](https://docs.aws.amazon.com/sdk-for-cpp/v1/developer-guide/welcome.html) and [API reference](http://sdk.amazonaws.com/cpp/api/LATEST/index.html)
-- [ ] I've searched for [previous similar issues](https://github.com/aws/aws-sdk-cpp/issues) and didn't find any solution
-
-**Describe the bug**
-A clear and concise description of what the bug is.
-
-**SDK version number**
-
-**Platform/OS/Hardware/Device**
-What are you running the sdk on?
-
-**To Reproduce (observed behavior)**
-Steps to reproduce the behavior (please share code)
-
-**Expected behavior**
-A clear and concise description of what you expected to happen.
-
-**Logs/output**
-If applicable, add logs or error output.
-
-*REMEMBER TO SANITIZE YOUR PERSONAL INFO*
-
-
-
-**Additional context**
-Add any other context about the problem here.
diff --git a/vendor/aws/aws-crt-php/.github/ISSUE_TEMPLATE/---feature-request.md b/vendor/aws/aws-crt-php/.github/ISSUE_TEMPLATE/---feature-request.md
deleted file mode 100644
index 8b6a0e1..0000000
--- a/vendor/aws/aws-crt-php/.github/ISSUE_TEMPLATE/---feature-request.md
+++ /dev/null
@@ -1,20 +0,0 @@
----
-name: "\U0001F680 Feature request"
-about: Suggest an idea for this project
-title: ''
-labels: feature-request, needs-triage
-assignees: ''
-
----
-
-**Is your feature request related to a problem? Please describe.**
-A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
-
-**Describe the solution you'd like**
-A clear and concise description of what you want to happen.
-
-**Describe alternatives you've considered**
-A clear and concise description of any alternative solutions or features you've considered.
-
-**Additional context**
-Add any other context or screenshots about the feature request here. \ No newline at end of file
diff --git a/vendor/aws/aws-crt-php/.github/ISSUE_TEMPLATE/---questions-help.md b/vendor/aws/aws-crt-php/.github/ISSUE_TEMPLATE/---questions-help.md
deleted file mode 100644
index 7284b7c..0000000
--- a/vendor/aws/aws-crt-php/.github/ISSUE_TEMPLATE/---questions-help.md
+++ /dev/null
@@ -1,23 +0,0 @@
----
-name: "\U0001F4AC Questions / Help"
-about: If you have questions, please check AWS Forums or StackOverflow
-title: ''
-labels: guidance, needs-triage
-assignees: ''
-
----
-
-Confirm by changing [ ] to [x] below:
-- [ ] I've searched for [previous similar issues](https://github.com/awslabs/aws-crt-php/issues) and didn't find any solution
-
-**Platform/OS/Hardware/Device**
-What are you running the sdk on?
-
-**Describe the question**
-
-
-**Logs/output**
-If applicable, add logs or error output.
-
-*REMEMBER TO SANITIZE YOUR PERSONAL INFO*
-
diff --git a/vendor/aws/aws-crt-php/.github/PULL_REQUEST_TEMPLATE.md b/vendor/aws/aws-crt-php/.github/PULL_REQUEST_TEMPLATE.md
deleted file mode 100644
index ab40d21..0000000
--- a/vendor/aws/aws-crt-php/.github/PULL_REQUEST_TEMPLATE.md
+++ /dev/null
@@ -1,6 +0,0 @@
-*Issue #, if available:*
-
-*Description of changes:*
-
-
-By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
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