客户端打包机搭建

机器环境:
mac 10.15.7

安装Jenkins文件,

使用brew 安装。

  • 首先安装brew,在终端输入,命令,
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"

然后根据操作提示,安装即可。如果失败了,可多次尝试。
brew安装说明

  • 然后使用brew安装Jenkins,同样的,终端输入命令
brew install jenkins

接下来,就等着,Jenkins自动安装布置好就ok。

  • Jenkins安装好了,在浏览器中,输入localhost:8080,就可以访问到Jenkins。

问题1: 如果出现localhost:8080可以访问,但是换成本机的ip地址=8080,却无法访问的情况。
解决:修改目录/usr/local/opt/jenkins下的homebrew.mxcl.jenkins-lts.plist。将--httpListenAddress=127.0.0.1修改为--httpListenAddress=0.0.0.0即可。然后重启Jenkins。

  • Jenkins常用启动命令
# Start the Jenkins service: 
brew services start jenkins 
# Restart the Jenkins service: 
brew services restart jenkins 
# Update the Jenkins version: 
brew upgrade jenkins 

node js

下载mac版,安装即可
同时安装上node常用的几个工具命令。

sudo npm install -g anywhere
sudo npm install -g gulp

python

mac自带python 2.7.x及 python3 3.8.x。但是使用pip还需要自己安装,pip支持。
在命令行输入,其中一条或是全部。

# python2
sudo easy_install pip 
# python3
curl https://bootstrap.pypa.io/get-pip.py | python3

你可能感兴趣的:(客户端打包机搭建)