Prepare for release

This commit is contained in:
Julien Eluard 2019-03-27 09:40:12 +01:00
parent 29c8430791
commit e2f4e4b190
No known key found for this signature in database
GPG Key ID: 6FD7DB5437FCBEF6
3 changed files with 1 additions and 25 deletions

22
Jenkinsfile vendored
View File

@ -1,22 +0,0 @@
node('linux') {
stage('Git Prep') {
checkout scm
sh 'git config user.name "status-im-auto"'
sh 'git config user.email "auto@status.im"'
}
stage('Install Deps') {
sh 'cd website && npm install'
}
stage('Publish') {
withCredentials([string(
credentialsId: 'jenkins-github-token',
variable: 'GITHUB_TOKEN',
)]) {
sh 'clojure -A:examples -m cljs.main -O advanced -d website/static/js -o website/static/js/pluto.js -c pluto.examples'
sh 'cp -R examples/resources/extensions website/static'
sh 'cd website && GIT_USER="status-im-auto:$GITHUB_TOKEN" npm run publish-gh-pages'
}
}
}

View File

@ -9,8 +9,6 @@
com.bhauman/rebel-readline-cljs {:mvn/version "0.1.4"}
binaryage/devtools {:mvn/version "0.9.10"}}
:main-opts ["-m" "figwheel.main" "-b" "dev/core" "-r"]}
:compile {:extra-paths ["test"]
:main-opts ["-e" "(require,'[eftest.runner,:refer,[find-tests,run-tests]]),(run-tests,(find-tests,\"test\"))"]}
:test-clj {:extra-paths ["test"]
:extra-deps {eftest {:mvn/version "0.5.7"}}
:main-opts ["-e" "(require,'[eftest.runner,:refer,[find-tests,run-tests]]),(run-tests,(find-tests,\"test\"))"]}

View File

@ -1,4 +1,4 @@
(defproject status-im/pluto "iteration-4-9-SNAPSHOT"
(defproject status-im/pluto "iteration-4-9"
:dependencies [[org.clojure/clojure "1.10.0"]
[org.clojure/clojurescript "1.10.516"]
[org.clojure/tools.reader "1.3.2"]