Commit 1b85b2fc by Leonard Gram

build: removes deploy from nightly while testing it.

parent 5f98982a
...@@ -57,7 +57,6 @@ jobs: ...@@ -57,7 +57,6 @@ jobs:
command: 'sudo npm install -g yarn --quiet' command: 'sudo npm install -g yarn --quiet'
- restore_cache: - restore_cache:
key: dependency-cache-{{ checksum "yarn.lock" }} key: dependency-cache-{{ checksum "yarn.lock" }}
# Could we skip this step if the cache has been restored? `[ -d node_modules ] || yarn install ...` should be able to apply to build step as well
- run: - run:
name: yarn install name: yarn install
command: 'yarn install --pure-lockfile --no-progress' command: 'yarn install --pure-lockfile --no-progress'
...@@ -221,9 +220,9 @@ workflows: ...@@ -221,9 +220,9 @@ workflows:
filters: *filter-not-release filters: *filter-not-release
- deploy-master: - deploy-master:
requires: requires:
- build
- test-backend - test-backend
- test-frontend - test-frontend
- build
- codespell - codespell
- gometalinter - gometalinter
filters: filters:
...@@ -264,10 +263,3 @@ workflows: ...@@ -264,10 +263,3 @@ workflows:
- gometalinter - gometalinter
- test-frontend - test-frontend
- test-backend - test-backend
- deploy-master:
requires:
- build-all
- codespell
- gometalinter
- test-frontend
- test-backend
#!/bin/bash -e #!/bin/bash -e
if [ ! -d '/tmp/phantomjs' ]; then if [ ! -d '/tmp/phantomjs' ]; then
_version="2.1.16" _version="2.1.1"
curl -L https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-$_version-windows.zip > /tmp/phantomjs-win.zip curl -L https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-$_version-windows.zip > /tmp/phantomjs-win.zip
curl -L https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-$_version-macosx.zip > /tmp/phantomjs-mac.zip curl -L https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-$_version-macosx.zip > /tmp/phantomjs-mac.zip
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment