forked from apache/cordova-plugin-file
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from OutSystems/feat/RMET-280/update-upstream
RMET-280 - Update File Plugin to the last version released
- Loading branch information
Showing
105 changed files
with
2,532 additions
and
14,486 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,28 @@ | ||
# appveyor file | ||
# http://www.appveyor.com/docs/appveyor-yml | ||
|
||
max_jobs: 1 | ||
|
||
shallow_clone: true | ||
|
||
init: | ||
- git config --global core.autocrlf true | ||
|
||
image: | ||
- Visual Studio 2017 | ||
|
||
environment: | ||
nodejs_version: "4" | ||
matrix: | ||
- PLATFORM: windows-10-store | ||
|
||
install: | ||
- npm cache clean -f | ||
- node --version | ||
- npm install -g cordova-paramedic@https://github.com/apache/cordova-paramedic.git | ||
- npm install -g cordova | ||
|
||
build: off | ||
|
||
test_script: | ||
- cordova-paramedic --config pr\%PLATFORM% --plugin . --justBuild |
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,10 @@ | ||
root: true | ||
extends: semistandard | ||
rules: | ||
indent: | ||
- error | ||
- 4 | ||
camelcase: off | ||
padded-blocks: off | ||
operator-linebreak: off | ||
no-throw-literal: off |
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 @@ | ||
* text eol=lf |
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,16 @@ | ||
# CI service configurations | ||
.travis.yml | ||
.appveyor.yml | ||
appveyor.yml | ||
|
||
# Testing, code coverage, and linting | ||
.eslintignore | ||
.eslintrc.yml | ||
|
||
# Git | ||
.git | ||
.gitattributes | ||
.gitignore | ||
|
||
# Github | ||
.github |
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,4 +1,114 @@ | ||
language: node_js | ||
# This Travis configuration file is built after a Cordova Paramedic | ||
# specific template with minimal modifications and adaptations: | ||
# https://github.com/apache/cordova-paramedic/blob/master/.travis.yml | ||
|
||
sudo: false | ||
node_js: | ||
- "4.2" | ||
|
||
addons: | ||
jwt: | ||
# SAUCE_ACCESS_KEY | ||
secure: JYUSu0UCRC8cpcuh39sn9RqkGBFbG7Hcil3NTpTWbnDRbNrlZeCzDDSirSRD9rPC+M3AEmTo3zKHuWusjUSV4NWLoad/Yd0JXgSNKmxxdESlN6stxCn7oK1I7DwcSlW7capx/44fEjOZ5hajO4mjM/QYuu7+QOuaKvhP5jQjong= | ||
|
||
env: | ||
global: | ||
- SAUCE_USERNAME=snay | ||
- TRAVIS_NODE_VERSION=6 | ||
- ANDROID_API_LEVEL=28 | ||
- ANDROID_BUILD_TOOLS_VERSION=28.0.3 | ||
|
||
language: node_js | ||
node_js: 6 | ||
|
||
# yaml anchor/alias: https://medium.com/@tommyvn/travis-yml-dry-with-anchors-8b6a3ac1b027 | ||
|
||
_ios: &_ios | ||
os: osx | ||
osx_image: xcode10.2 | ||
|
||
_android: &_android | ||
language: android | ||
os: linux | ||
jdk: oraclejdk8 | ||
android: | ||
components: | ||
- tools | ||
- build-tools-$ANDROID_BUILD_TOOLS_VERSION | ||
- android-$ANDROID_API_LEVEL | ||
licenses: | ||
- 'android-sdk-preview-license-.+' | ||
- 'android-sdk-license-.+' | ||
- 'google-gdk-license-.+' | ||
|
||
matrix: | ||
include: | ||
# local tests, without saucelabs | ||
- env: PLATFORM=local/browser | ||
<<: *_ios | ||
- env: PLATFORM=local/ios-10.0 | ||
<<: *_ios | ||
|
||
# many tests with saucelabs | ||
- env: PLATFORM=browser-firefox | ||
- env: PLATFORM=browser-safari | ||
- env: PLATFORM=browser-edge | ||
|
||
- env: PLATFORM=ios-12.2 | ||
<<: *_ios | ||
|
||
- env: PLATFORM=android-5.1 | ||
<<: *_android | ||
- env: PLATFORM=android-6.0 | ||
<<: *_android | ||
- env: PLATFORM=android-7.0 | ||
<<: *_android | ||
- env: PLATFORM=android-7.1 | ||
<<: *_android | ||
- env: PLATFORM=android-8.0 | ||
<<: *_android | ||
- env: PLATFORM=android-8.1 | ||
<<: *_android | ||
- env: PLATFORM=android-9.0 | ||
<<: *_android | ||
|
||
before_install: | ||
# manually install Node for `language: android` | ||
- if [[ "$PLATFORM" =~ android ]]; then nvm install $TRAVIS_NODE_VERSION; fi | ||
- node --version | ||
- if [[ "$PLATFORM" =~ android ]]; then gradle --version; fi | ||
- if [[ "$PLATFORM" =~ ios ]]; then npm install -g ios-deploy; fi | ||
- npm install -g cordova | ||
# install paramedic if not running on paramedic repo | ||
- if ! [[ "$TRAVIS_REPO_SLUG" =~ cordova-paramedic ]]; then npm install -g github:apache/cordova-paramedic; fi | ||
|
||
install: | ||
- npm install | ||
|
||
before_script: | ||
- | | ||
if [[ "$TRAVIS_REPO_SLUG" =~ cordova-paramedic ]]; then | ||
# when used in the cordova-paramedic repo | ||
TEST_COMMAND="npm run eslint" | ||
PARAMEDIC_PLUGIN_TO_TEST="./spec/testable-plugin/" | ||
PARAMEDIC_COMMAND="node main.js" | ||
else | ||
# when used in any other (plugin) repo | ||
TEST_COMMAND="npm test" | ||
PARAMEDIC_PLUGIN_TO_TEST=$(pwd) | ||
PARAMEDIC_COMMAND="cordova-paramedic" | ||
fi | ||
- PARAMEDIC_BUILDNAME=travis-$TRAVIS_REPO_SLUG-$TRAVIS_JOB_NUMBER | ||
- | | ||
echo "Variables now are set to:" | ||
echo "TEST_COMMAND=$TEST_COMMAND" | ||
echo "ADDITIONAL_TESTS=$ADDITIONAL_TESTS" | ||
echo "PARAMEDIC_COMMAND=$PARAMEDIC_COMMAND" | ||
echo "PLATFORM=$PLATFORM" | ||
echo "PARAMEDIC_PLUGIN_TO_TEST=$PARAMEDIC_PLUGIN_TO_TEST" | ||
echo "PARAMEDIC_BUILDNAME=$PARAMEDIC_BUILDNAME" | ||
script: | ||
- $TEST_COMMAND | ||
- if [[ "$ADDITIONAL_TESTS_DIR" != "" ]]; then | ||
cd $ADDITIONAL_TESTS_DIR && npm install && npm test; | ||
else | ||
$PARAMEDIC_COMMAND --config ./pr/$PLATFORM --plugin $PARAMEDIC_PLUGIN_TO_TEST --buildName $PARAMEDIC_BUILDNAME; | ||
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
Oops, something went wrong.