gpt4 book ai didi

meteor + CodeShip + 模数

转载 作者:行者123 更新时间:2023-12-04 06:21:04 24 4
gpt4 key购买 nike

谁能推荐一个好的设置脚本在通过测试后部署到 Modulus?

现在我正在使用:

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

这基本上就是我设法在 interwebz 周围复制和粘贴的内容,但我不知道自己在做什么。

最后我的测试管道是:

meteor --test

CodeShip 日志的输出:

I20150515-13:34:16.005(0)? [velocity] mocha is starting a mirror at http://localhost:44995/.
I20150515-13:34:16.006(0)? [velocity] This takes a few minutes the first time.
I20150515-13:34:16.006(0)? [velocity] You can see the mirror logs at: tail -f /home/rof/src/bitbucket.org/atlasshrugs/garden/.meteor/local/log/mocha.log
PASSED mocha : Server initialization => should have a Meteor version defined

一旦进入客户端测试,它就会永远挂起并且无法构建。

有什么建议吗?

最佳答案

根据Velocity readme你应该使用这个命令:meteor --test --release velocity:METEOR@1.1.0.3_1。我确实设法使用以下设置命令让它工作:

nvm install 0.10.30
nvm use 0.10.30
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

和这个测试命令(用 Meteor 应用程序目录的路径替换。在这种情况下 sanjo:jasmine 是必需的,但如果你使用另一个测试器,你可能需要添加相关包. velocity:html-reporter 包对于这个目的有点矫枉过正,但它确实有效,控制台报告器应该足够了,但我没有测试它):

cd ~/src/bitbucket.org/<path>/ && 
meteor add sanjo:jasmine velocity:html-reporter &&
meteor --test --release velocity:METEOR@1.1.0.3_1

关于 meteor + CodeShip + 模数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30261036/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com