Skip to content

Commit 559c407

Browse files
committed
Add caching and doc deployment - probably should only do this once
1 parent 5746a8a commit 559c407

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

.appveyor.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,13 @@ matrix:
2424
fast_finish: true
2525

2626
cache:
27-
- composer.phar -> appveyor.xml
27+
- composer.phar -> composer.json
28+
- node_modules -> package.json
2829
- ocular.phar -> appveyor.xml
2930
- c:\projects\wmi-scripting\vendor
3031
- c:\tools\%PHP_DIR%
3132

3233
install:
33-
- ps: $fileContent = "-----BEGIN RSA PRIVATE KEY-----`n"
34-
- ps: $fileContent += $env:priv_key.Replace(' ', "`n")
35-
- ps: $fileContent += "`n-----END RSA PRIVATE KEY-----`n"
36-
- ps: Set-Content $env:userprofile\.ssh\id_rsa $fileContent
37-
- git submodule update --init --recursive
3834
- SET PATH=c:\tools\%PHP_DIR%;%PATH%
3935
- IF NOT EXIST c:\tools\%PHP_DIR%\php.exe (
4036
cinst -y php -i --version %PHP_VERSION% &&
@@ -57,6 +53,11 @@ install:
5753

5854
- cd c:\projects\wmi-scripting
5955

56+
- ps: $fileContent = "-----BEGIN RSA PRIVATE KEY-----`n"
57+
- ps: $fileContent += $env:priv_key.Replace(' ', "`n")
58+
- ps: $fileContent += "`n-----END RSA PRIVATE KEY-----`n"
59+
- ps: Set-Content $env:userprofile\.ssh\id_rsa $fileContent
60+
- git submodule update --init --recursive
6061
- git config --global user.email "%GIT_EMAIL%"
6162
- git config --global user.name "%GIT_EMAIL%"
6263
- yarn install
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Getting Started
22

3-
Download install etc.. ??
3+
Composer install.. etc..

docs/documentation/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Introduction
22

3-
Some stuff about this library. The philosophy etc...
3+
Some stuff about this library. The philosophy etc... make stuff easy..

0 commit comments

Comments
 (0)