Skip to content
This repository has been archived by the owner on Aug 26, 2021. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
fixed circle file
Signed-off-by: Dominik Wilkowski <Hi@Dominik-Wilkowski.com>
  • Loading branch information
dominikwilkowski committed Nov 15, 2017
1 parent eb68ab4 commit 846803a
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions .circleci/config.yml
Expand Up @@ -10,24 +10,24 @@ jobs:
- image: circleci/node:8.9.1

steps:
- checkout # get the files from the repo (why would you ever not want the files????)
- run: npm install # duh
- run: npm run bootstrap # installing all dependencies of all packages
- run: npm run build # build all packages
- run: npm test # run all tests
- run: rm -rf node_modules # delete node_modules folder again to not push it to cf
- find . -name "lib" -exec rm -rf '{}' + # removing all lib/ folders
- find . -name "src" -exec rm -rf '{}' + # removing all src/ folder
- checkout # get the files from the repo (why would you ever not want the files????)
- run: npm install # duh
- run: npm run bootstrap # installing all dependencies of all packages
- run: npm run build # build all packages
- run: npm test # run all tests
- run: rm -rf node_modules # delete node_modules folder again to not push it to cf
- run: find . -name "lib" -exec rm -rf '{}' + # removing all lib/ folders
- run: find . -name "src" -exec rm -rf '{}' + # removing all src/ folder
# install packages: cf-cli and tree
- run: sudo apt-get install apt-transport-https
- run: wget -q -O - https://packages.cloudfoundry.org/debian/cli.cloudfoundry.org.key | sudo apt-key add -
- run: echo "deb https://packages.cloudfoundry.org/debian stable main" | sudo tee /etc/apt/sources.list.d/cloudfoundry-cli.list
- run: sudo apt-get update
- run: sudo apt-get install tree
- run: sudo apt-get install cf-cli
- run: cf version # log what version we are running
- run: cf version # log what version we are running
- run: cf login -a api.system.y.cld.gov.au -o $CF_ORG_STAGING -s $CF_SPACE_STAGING -u $CF_USER_STAGING -p $CF_PASSWORD_STAGING
- run: tree -C # log all files before we push
- run: tree -C # log all files before we push
- run: cf push -f manifest.yml


Expand All @@ -38,24 +38,24 @@ jobs:
- image: circleci/node:8.9.1

steps:
- checkout # get the files from the repo (why would you ever not want the files????)
- run: npm install # duh
- run: npm run bootstrap # installing all dependencies of all packages
- run: npm run build # build all packages
- run: npm test # run all tests
- run: rm -rf node_modules # delete node_modules folder again to not push it to cf
- find . -name "lib" -exec rm -rf '{}' + # removing all lib/ folders
- find . -name "src" -exec rm -rf '{}' + # removing all src/ folder
- checkout # get the files from the repo (why would you ever not want the files????)
- run: npm install # duh
- run: npm run bootstrap # installing all dependencies of all packages
- run: npm run build # build all packages
- run: npm test # run all tests
- run: rm -rf node_modules # delete node_modules folder again to not push it to cf
- run: find . -name "lib" -exec rm -rf '{}' + # removing all lib/ folders
- run: find . -name "src" -exec rm -rf '{}' + # removing all src/ folder
# install packages: cf-cli and tree
- run: sudo apt-get install apt-transport-https
- run: wget -q -O - https://packages.cloudfoundry.org/debian/cli.cloudfoundry.org.key | sudo apt-key add -
- run: echo "deb https://packages.cloudfoundry.org/debian stable main" | sudo tee /etc/apt/sources.list.d/cloudfoundry-cli.list
- run: sudo apt-get update
- run: sudo apt-get install tree
- run: sudo apt-get install cf-cli
- run: cf version # log what version we are running
- run: cf version # log what version we are running
- run: cf login -a api.system.b.cld.gov.au -o $CF_ORG_PROD -s $CF_SPACE_PROD -u $CF_USER_PROD -p $CF_PASSWORD_PROD
- run: tree -C # log all files before we push
- run: tree -C # log all files before we push
- run: cf push -f manifest.yml


Expand Down

0 comments on commit 846803a

Please sign in to comment.