Skip to content

Commit

Permalink
Update docs, remove 8 and 9 node from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
artem-malko committed Jan 12, 2020
1 parent 2f174a8 commit 1f82201
Show file tree
Hide file tree
Showing 4 changed files with 244 additions and 237 deletions.
101 changes: 51 additions & 50 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,63 +1,64 @@
language: c

os:
- linux
- osx
- linux
- osx

env:
matrix:
- export NODE_VERSION="11"
- export NODE_VERSION="10"
- export NODE_VERSION="8"
matrix:
- export NODE_VERSION="13"
- export NODE_VERSION="12"
- export NODE_VERSION="11"
- export NODE_VERSION="10"

matrix:
fast_finish: true
fast_finish: true

before_install:
- echo $TRAVIS_OS_NAME
- git clone https://github.com/creationix/nvm.git ./.nvm
- source ./.nvm/nvm.sh
- nvm install $NODE_VERSION
- nvm use $NODE_VERSION
- echo $TRAVIS_OS_NAME
- git clone https://github.com/creationix/nvm.git ./.nvm
- source ./.nvm/nvm.sh
- nvm install $NODE_VERSION
- nvm use $NODE_VERSION

before_script:
- if [ ${NODE_VERSION} = "6" ]; then npm install -g npm; fi
- npm -v
- 'npm install -g git://github.com/tars/tars-cli.git#${TRAVIS_COMMIT}'
- if [ ${NODE_VERSION} = "6" ]; then npm install -g npm; fi
- npm -v
- "npm install -g git://github.com/tars/tars-cli.git#${TRAVIS_COMMIT}"

script:
- tars --version
- mkdir tars-temp
- cd tars-temp
- tars init --silent
- tars -v
- tars update-project
- tars -v
- tars upgrade-project -f
- tars -v
- tars add-component new -e
- tars add-component new_ --empty
- tars add-module new_module -e
- tars add-component new1 -f
- tars add-component new1_ --full
- tars add-module new1_module -f
- tars add-component new2 -b
- tars add-component new2_ --basic
- tars add-module new2_module --basic
- tars add-component new3 -a
- tars add-component new3_ --assets
- tars add-module new3_module --assets
- tars add-component new4 -i
- tars add-component new4_ --ie
- tars add-module new4_module --ie
- tars add-component new5 -d
- tars add-component new5_ --data
- tars add-module new5_module --data
- tars add-component new6 -t
- tars add-component new6_ --template
- tars add-module new6_module --template
- tars add-page main.html
- tars add-page inner
- tars add-page contacts -e
- tars add-page contacts_ --empty
- tars build --release --ie
- tars --version
- mkdir tars-temp
- cd tars-temp
- tars init --silent
- tars -v
- tars update-project
- tars -v
- tars upgrade-project -f
- tars -v
- tars add-component new -e
- tars add-component new_ --empty
- tars add-module new_module -e
- tars add-component new1 -f
- tars add-component new1_ --full
- tars add-module new1_module -f
- tars add-component new2 -b
- tars add-component new2_ --basic
- tars add-module new2_module --basic
- tars add-component new3 -a
- tars add-component new3_ --assets
- tars add-module new3_module --assets
- tars add-component new4 -i
- tars add-component new4_ --ie
- tars add-module new4_module --ie
- tars add-component new5 -d
- tars add-component new5_ --data
- tars add-module new5_module --data
- tars add-component new6 -t
- tars add-component new6_ --template
- tars add-module new6_module --template
- tars add-page main.html
- tars add-page inner
- tars add-page contacts -e
- tars add-page contacts_ --empty
- tars build --release --ie
99 changes: 49 additions & 50 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,70 +1,69 @@
-
# AppVeyor file
- # AppVeyor file
# http://www.appveyor.com/docs/appveyor-yml

# Build version format
version: "{build}"

platform:
- x64
- x86
- x64
- x86

clone_depth: 10

# Fix line endings on Windows
init:
- git config --global core.autocrlf true
- git config --global core.autocrlf true

# What combinations to test
environment:
matrix:
- nodejs_version: 11
- nodejs_version: 10
- nodejs_version: 9
- nodejs_version: 8
matrix:
- nodejs_version: 13
- nodejs_version: 12
- nodejs_version: 11
- nodejs_version: 10

install:
- ps: Install-Product node $env:nodejs_version $env:platform
- node --version
- npm install -g npm
- npm --version
- 'npm install -g git://github.com/tars/tars-cli.git#%APPVEYOR_REPO_COMMIT%'
- ps: Install-Product node $env:nodejs_version $env:platform
- node --version
- npm install -g npm
- npm --version
- "npm install -g git://github.com/tars/tars-cli.git#%APPVEYOR_REPO_COMMIT%"

build: off

test_script:
- cmd: tars --version
- cmd: mkdir tars-temp
- cmd: cd tars-temp
- cmd: tars init --silent
- cmd: tars -v
- cmd: tars update-project
- cmd: tars -v
- cmd: tars upgrade-project -f
- cmd: tars -v
- cmd: tars add-component new -e
- cmd: tars add-component new_ --empty
- cmd: tars add-module new_module -e
- cmd: tars add-component new1 -f
- cmd: tars add-component new1_ --full
- cmd: tars add-module new1_module -f
- cmd: tars add-component new2 -b
- cmd: tars add-component new2_ --basic
- cmd: tars add-module new2_module --basic
- cmd: tars add-component new3 -a
- cmd: tars add-component new3_ --assets
- cmd: tars add-module new3_module --assets
- cmd: tars add-component new4 -i
- cmd: tars add-component new4_ --ie
- cmd: tars add-module new4_module --ie
- cmd: tars add-component new5 -d
- cmd: tars add-component new5_ --data
- cmd: tars add-module new5_module --data
- cmd: tars add-component new6 -t
- cmd: tars add-component new6_ --template
- cmd: tars add-module new6_module --template
- cmd: tars add-page main.html
- cmd: tars add-page inner
- cmd: tars add-page contacts -e
- cmd: tars add-page contacts_ --empty
- cmd: tars build --release --ie
- cmd: tars --version
- cmd: mkdir tars-temp
- cmd: cd tars-temp
- cmd: tars init --silent
- cmd: tars -v
- cmd: tars update-project
- cmd: tars -v
- cmd: tars upgrade-project -f
- cmd: tars -v
- cmd: tars add-component new -e
- cmd: tars add-component new_ --empty
- cmd: tars add-module new_module -e
- cmd: tars add-component new1 -f
- cmd: tars add-component new1_ --full
- cmd: tars add-module new1_module -f
- cmd: tars add-component new2 -b
- cmd: tars add-component new2_ --basic
- cmd: tars add-module new2_module --basic
- cmd: tars add-component new3 -a
- cmd: tars add-component new3_ --assets
- cmd: tars add-module new3_module --assets
- cmd: tars add-component new4 -i
- cmd: tars add-component new4_ --ie
- cmd: tars add-module new4_module --ie
- cmd: tars add-component new5 -d
- cmd: tars add-component new5_ --data
- cmd: tars add-module new5_module --data
- cmd: tars add-component new6 -t
- cmd: tars add-component new6_ --template
- cmd: tars add-module new6_module --template
- cmd: tars add-page main.html
- cmd: tars add-page inner
- cmd: tars add-page contacts -e
- cmd: tars add-page contacts_ --empty
- cmd: tars build --release --ie
Loading

0 comments on commit 1f82201

Please sign in to comment.