-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
115 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
language: php | ||
|
||
sudo: false | ||
|
||
addons: | ||
apt: | ||
packages: | ||
- parallel | ||
|
||
cache: | ||
directories: | ||
- $HOME/.composer/cache | ||
|
||
before_install: | ||
- if php -i | grep -q xdebug; then phpenv config-rm xdebug.ini; fi; | ||
- if [ "$GITHUB_COMPOSER_AUTH" ]; then composer config -g github-oauth.github.com $GITHUB_COMPOSER_AUTH; fi; | ||
|
||
before_script: | ||
- | | ||
set -e | ||
composer require nimut/typo3-complete "$TYPO3_VERSION"; | ||
git checkout composer.json; | ||
export TYPO3_PATH_WEB=$PWD/.Build/public; | ||
script: | ||
- | | ||
set -e | ||
if [ "$TRAVIS_ALLOW_FAILURE" == "true" ]; then echo "skip testing"; return; fi; | ||
echo "Running php lint"; | ||
composer test:phplint | ||
jobs: | ||
fast_finish: true | ||
include: | ||
- stage: test | ||
php: 7.3 | ||
env: TYPO3_VERSION=^8.7 | ||
- stage: test | ||
php: 7.2 | ||
env: TYPO3_VERSION=^8.7 | ||
- stage: test | ||
php: 7.1 | ||
env: TYPO3_VERSION=^8.7 | ||
- stage: test | ||
php: 7.0 | ||
env: TYPO3_VERSION=^8.7 | ||
- stage: 🚢 to TER | ||
if: tag IS present | ||
php: 7.0 | ||
install: skip | ||
before_script: skip | ||
script: | ||
- | | ||
if [ -n "$TYPO3_ORG_USERNAME" ] && [ -n "$TYPO3_ORG_PASSWORD" ]; then | ||
echo -e "Preparing upload of release ${TRAVIS_TAG} to TER\n"; | ||
# Install ter client | ||
composer global require helhum/ter-client | ||
# Upload | ||
TAG_MESSAGE=`git tag -n10 -l $TRAVIS_TAG | sed 's/^[0-9.]*[ ]*//g'` | ||
echo "Uploading release ${TRAVIS_TAG} to TER" | ||
$HOME/.composer/vendor/bin/ter-client upload jh_captcha . -u "$TYPO3_ORG_USERNAME" -p "$TYPO3_ORG_PASSWORD" -m "$TAG_MESSAGE" | ||
fi; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,16 @@ | ||
[general] | ||
copyright = 2015-2018 | ||
copyright = since 2015 by Jan Haffner | ||
project = Google reCAPTCHA (v2/v3) | ||
release = 3.0.1 | ||
version = 3.0.1 | ||
release = 3.0.2 | ||
|
||
[html_theme_options] | ||
github_branch = | ||
github_commit_hash = | ||
github_repository = | ||
path_to_documentation_dir = | ||
github_revision_msg = | ||
github_sphinx_locale = | ||
project_contact = | ||
project_discussions = | ||
project_home = https://github.com/TehTux/jh_captcha | ||
project_issues = https://github.com/TehTux/jh_captcha/issues | ||
project_repository = https://github.com/TehTux/jh_captcha.git | ||
use_opensearch = | ||
project_repository = https://github.com/TehTux/jh_captcha | ||
|
||
[intersphinx_mapping] | ||
t3tsref = http://docs.typo3.org/typo3cms/TyposcriptReference/ | ||
t3tsref = https://docs.typo3.org/m/typo3/reference-typoscript/master/en-us/ | ||
|
||
[notify] | ||
about_new_build = [email protected] | ||
[extlinks] | ||
issue = https://github.com/TehTux/jh_captcha/issues/%s | Issue # | ||
pr = https://github.com/TehTux/jh_captcha/pull/%s | PR # |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,16 @@ | ||
[general] | ||
copyright = 2015-2018 | ||
copyright = since 2015 by Jan Haffner | ||
project = Google reCAPTCHA (v2/v3) | ||
release = 3.0.1 | ||
version = 3.0.1 | ||
release = 3.0.2 | ||
|
||
[html_theme_options] | ||
github_branch = | ||
github_commit_hash = | ||
github_repository = | ||
path_to_documentation_dir = | ||
github_revision_msg = | ||
github_sphinx_locale = | ||
project_contact = | ||
project_discussions = | ||
project_home = https://github.com/TehTux/jh_captcha | ||
project_issues = https://github.com/TehTux/jh_captcha/issues | ||
project_repository = https://github.com/TehTux/jh_captcha.git | ||
use_opensearch = | ||
project_repository = https://github.com/TehTux/jh_captcha | ||
|
||
[intersphinx_mapping] | ||
t3tsref = http://docs.typo3.org/typo3cms/TyposcriptReference/ | ||
t3tsref = https://docs.typo3.org/m/typo3/reference-typoscript/master/en-us/ | ||
|
||
[notify] | ||
about_new_build = [email protected] | ||
[extlinks] | ||
issue = https://github.com/TehTux/jh_captcha/issues/%s | Issue # | ||
pr = https://github.com/TehTux/jh_captcha/pull/%s | PR # |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters