codeship

Meteor + CodeShip + Modulus

会有一股神秘感。 提交于 2019-12-06 08:13:02
问题 Can anyone recommend a good setup script to deploy to Modulus after passing tests? Right now I'm using: nvm install 0.10.28 nvm use 0.10.28 curl -o meteor_install_script.sh https://install.meteor.com/ chmod +x meteor_install_script.sh sed -i "s/type sudo >\/dev\/null 2>&1/\ false /g" meteor_install_script.sh ./meteor_install_script.sh export PATH=$PATH:~/.meteor/ meteor --version Which is basically what I've managed to copy + paste around the interwebz and I have no idea what I'm doing.

Testing Meteor with Velocity at Codeship

Deadly 提交于 2019-12-04 17:01:05
I'm trying to configure a CI infrastructure at Codeship. My local meteor --test command works like charm, but I'm getting a weird error at Codeship. Local: I20141208-12:29:42.602(2)? Started I20141208-12:29:42.602(2)? . I20141208-12:29:42.603(2)? I20141208-12:29:42.603(2)? 1 spec, 0 failures I20141208-12:29:42.603(2)? Finished in 0.014 seconds PASSED jasmine-server-unit : Job => Job should be created with title, description, location and isRemote Codeship: => Started proxy. => Started MongoDB. => Errors prevented startup: While Building the application: node_modules/velocity-cli/velocity-cli

Meteor + CodeShip + Modulus

北城余情 提交于 2019-12-04 15:43:16
Can anyone recommend a good setup script to deploy to Modulus after passing tests? Right now I'm using: nvm install 0.10.28 nvm use 0.10.28 curl -o meteor_install_script.sh https://install.meteor.com/ chmod +x meteor_install_script.sh sed -i "s/type sudo >\/dev\/null 2>&1/\ false /g" meteor_install_script.sh ./meteor_install_script.sh export PATH=$PATH:~/.meteor/ meteor --version Which is basically what I've managed to copy + paste around the interwebz and I have no idea what I'm doing. Finally my test pipeline is: meteor --test The output from CodeShip logs: I20150515-13:34:16.005(0)?

Amazon Web Service CodeDeploy appspec.yml problems

痞子三分冷 提交于 2019-11-30 12:45:40
问题 I have a Node.js application which is being automatically deployed to Amazon Web Service through Codeship using the CodeDeploy AWS deployment system . During the deployment process I've set in my appspec.yml for the currently running web application to be stopped. Once the deployment is complete, I want the web application to be started up again. os: linux files: - source: / destination: /var/www/app2 hooks: AfterInstall: - location: bash_scripts/stop_forever.sh runas: ec2-user