mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-23 10:07:19 +00:00
CI: Fix plugin library version and build test.html
This commit is contained in:
parent
d8104e2c41
commit
824930682a
@ -16,7 +16,7 @@ jobs:
|
|||||||
script:
|
script:
|
||||||
- ./bin/travis-pre-build.sh
|
- ./bin/travis-pre-build.sh
|
||||||
- export TW5_BUILD_TIDDLYWIKI='./tiddlywiki.js'
|
- export TW5_BUILD_TIDDLYWIKI='./tiddlywiki.js'
|
||||||
- export TW5_BUILD_VERSION=$(./bin/get-version-number)
|
- export TW5_BUILD_VERSION=$(./bin/get-plugin-library-version-number)
|
||||||
- export TW5_BUILD_DETAILS="Prerelease built from branch '$TRAVIS_BRANCH' at commit $(git rev-parse HEAD) of $(git remote get-url origin) at $(date +'%F %T %Z')"
|
- export TW5_BUILD_DETAILS="Prerelease built from branch '$TRAVIS_BRANCH' at commit $(git rev-parse HEAD) of $(git remote get-url origin) at $(date +'%F %T %Z')"
|
||||||
- export TW5_BUILD_MAIN_EDITION='./editions/prerelease'
|
- export TW5_BUILD_MAIN_EDITION='./editions/prerelease'
|
||||||
- export TW5_BUILD_OUTPUT='./output/prerelease'
|
- export TW5_BUILD_OUTPUT='./output/prerelease'
|
||||||
@ -26,7 +26,7 @@ jobs:
|
|||||||
script:
|
script:
|
||||||
- ./bin/travis-pre-build.sh
|
- ./bin/travis-pre-build.sh
|
||||||
- export TW5_BUILD_TIDDLYWIKI='./node_modules/tiddlywiki/tiddlywiki.js'
|
- export TW5_BUILD_TIDDLYWIKI='./node_modules/tiddlywiki/tiddlywiki.js'
|
||||||
- export TW5_BUILD_VERSION=$(./bin/get-version-number)
|
- export TW5_BUILD_VERSION=$(./bin/get-plugin-library-version-number)
|
||||||
- export TW5_BUILD_DETAILS="Built from branch '$TRAVIS_BRANCH' at commit $(git rev-parse HEAD) of $(git remote get-url origin) at $(date +'%F %T %Z')"
|
- export TW5_BUILD_DETAILS="Built from branch '$TRAVIS_BRANCH' at commit $(git rev-parse HEAD) of $(git remote get-url origin) at $(date +'%F %T %Z')"
|
||||||
- export TW5_BUILD_MAIN_EDITION='./editions/tw5.com'
|
- export TW5_BUILD_MAIN_EDITION='./editions/tw5.com'
|
||||||
- export TW5_BUILD_OUTPUT='./output'
|
- export TW5_BUILD_OUTPUT='./output'
|
||||||
|
@ -107,6 +107,15 @@ node $TW5_BUILD_TIDDLYWIKI \
|
|||||||
--build empty \
|
--build empty \
|
||||||
|| exit 1
|
|| exit 1
|
||||||
|
|
||||||
|
|
||||||
|
# /test.html Test edition
|
||||||
|
node ./tiddlywiki.js \
|
||||||
|
./editions/test \
|
||||||
|
--verbose \
|
||||||
|
--version \
|
||||||
|
--rendertiddler $:/core/save/all test.html text/plain \
|
||||||
|
|| exit 1
|
||||||
|
|
||||||
# /dev/index.html Developer docs
|
# /dev/index.html Developer docs
|
||||||
# /dev/favicon.ico Favicon for dev site
|
# /dev/favicon.ico Favicon for dev site
|
||||||
# /dev/static.html Static rendering of default tiddlers
|
# /dev/static.html Static rendering of default tiddlers
|
||||||
|
@ -16,4 +16,4 @@ if(!json.version) {
|
|||||||
throw "Missing version number in package.json";
|
throw "Missing version number in package.json";
|
||||||
}
|
}
|
||||||
|
|
||||||
process.stdout.write(json.version.split("-")[0]);
|
process.stdout.write("v" + json.version.split("-")[0]);
|
Loading…
Reference in New Issue
Block a user