安装maven
wget http://apache-mirror.rbc.ru/pub/apache/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.tar.gz
tar xzvf apache-maven-3.3.9-bin.tar.gz
export PATH=apache-maven-3.3.9/bin:$PATH
export PATH=/usr/local/bin/apache-maven-3.3.9/bin:$PATH
安装gitlab-ci-multi-runner
如果gitlab是8版本的,很悲催
Because of this Runner >= 9.0 requires GitLab CE/EE >= 9.0 and will not work
with older GitLab versions.
因为官方给的文档里头,Install on macOS
sudo curl --output /usr/local/bin/gitlab-runner https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-darwin-amd64
这个安装的版本跟gitlab8不兼容,泪奔
解决方案,安装指定版本
https://gitlab-ci-multi-runne...
从这里下载binaries/gitlab-ci-multi-runner-darwin-amd64
然后
cp gitlab-ci-multi-runner-darwin-amd64 /usr/local/bin/gitlab-ci-multi-runner
chmod +x /usr/local/bin/gitlab-ci-multi-runner
配置
➜ ~ gitlab-ci-multi-runner register
WARNING: Running in user-mode.
WARNING: Use sudo for system-mode:
WARNING: $ sudo gitlab-runner...
Please enter the gitlab-ci coordinator URL (e.g. https://gitlab.com/):
http://gitlab.xxx.com.cn/ci
Please enter the gitlab-ci token for this runner:
xxxx-xxxxx
Please enter the gitlab-ci description for this runner:
[xxxx-Pro.local]: sonar-maven-java8
Please enter the gitlab-ci tags for this runner (comma separated):
maven
Whether to run untagged builds [true/false]:
[false]: true
Registering runner... succeeded runner=zm4f-eFf
Please enter the executor: docker-ssh, virtualbox, docker+machine, docker-ssh+machine, docker, parallels, shell, ssh, kubernetes:
shell
Runner registered successfully. Feel free to start it, but if it's running already the config should be automatically reloaded!
运行
gitlab-ci-multi-runner install
gitlab-ci-multi-runner start
gitlab-ci-multi-runner run
配置gitlab runner环境变量
vim ~/.gitlab-runner/config.toml
完整如下
concurrent = 1
check_interval = 0
[[runners]]
name = "sonar-maven-java8"
url = "http://gitlab.xxxx.com.cn/ci"
token = "xxxxxx"
environment = ["MAVEN_HOME=/Users/xxxx/xxxx/build/apache-maven-3.3.9"]
executor = "shell"
[runners.cache]
配置maven的settings
vim ~/.m2/settings.xml
完整如下
<settings>
<mirrors>
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>*</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
</mirrors>
<profiles>
<profile>
<id>sonar</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<!-- Optional URL to server. Default value is http://localhost:9000 -->
<sonar.host.url>SONAR_HOST_URL</sonar.host.url>
<!--<sonar.jdbc.url>SONAR_JDBC_URL</sonar.jdbc.url>-->
<!--<sonar.jdbc.username>SONAR_JDBC_USER</sonar.jdbc.username>-->
<!--<sonar.jdbc.password>SONAR_JDBC_PWD</sonar.jdbc.password>-->
<sonar.sourceEnconding>UTF-8</sonar.sourceEnconding>
</properties>
</profile>
</profiles>
</settings>
之后就基本完工了
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。