Travis CI: 在线的,分布式的持续集成服务构建及测试github托管的代码开源的采用yaml格
原创
2023-06-26 05:50:15
141阅读
jenkins+Gitlab持续集成环境配置教程 环境简介:Jenkins 2.156(本地win10)GitLab Enterprise Edition 10.1.4-ee (远程服务器)Apache Ant 1.9.13 (本地win10) 安装步骤:(1)gitlab环境这里我使用的是公司的,具体配置步骤请见我另一篇博
转载
2024-03-28 11:31:50
45阅读
Travis CI in Action
转载
2020-05-08 16:31:00
109阅读
2评论
1,gitlab托管vue项目只要用过git托管工具的,相信这一步都是没问题的。 先在gitlab中创建一个空的项目。 新建一个分支。 这时候,仓库是空的。2,本地项目连接到远程仓库在本地创建一个vue项目,vue-cli创建即可。 将本地项目连接远程仓库。 3,设置gitlab-runner这是CI/CD流程中,比较重要的步骤,后序的流程都依赖于这个runner进行。 可见专门写的一个博客安装g
转载
2024-04-24 10:05:34
123阅读
目的:为了解决频繁发布开发环境版本问题gitlab-CI概念官方文档gitlab 8.0集成了gitlab-CICI(Continuous integration) 持续集成频繁地将代码集成到主干目的:产品快速迭代,同时保持高质量措施:代码提交到主干之前,执行自动化测试,失败则集成失败环境准备yml脚本文件gitlab上获取项目token服务器上注册gitlab-runner自动化部署实现1. 在
转载
2024-05-05 20:08:48
63阅读
{ "language": "node_js", "os": [ "linux" ], "dist": "bionic", "node_js": [ "12.16.1" ], "cache": { "yarn": true }, "git": { "depth": false }, "branches": { "only": [ "develop", "/^hotfix\\/.*$/",
原创
2022-04-09 17:31:15
101阅读
安装Ruby 2.0以上版本并安装travis的命令行工具 可以看出我的已经是安装好的(Ubuntu 16.04.3 LTS 系统) 安装:travis 安装完成后,切换到你开发环境的项目目录下,运行: 根据提示,输入你刚刚用于travis-ci网站登录的Github账户名及密码。 当然了,我这里直
原创
2021-06-05 10:42:58
341阅读
原创
2022-09-14 14:26:44
144阅读
{ "language": "node_js", "os": [ "linux" ], "dist": "bionic", "node_js": [ "12.16.1" ], "cache": { "yarn": true }, "git": { "depth": false }, "branches": { .*$/",
原创
2021-07-13 14:33:28
125阅读
安装Ruby 2.0以上版本并安装travis的命令行工具可以看出我的已经是安装好
原创
2023-04-05 20:21:10
40阅读
编写代码只是软件开发的一小部分,更多的时间往往花在构建(build)和测试(test)。为了提高软件开发的效率
原创
精选
2023-07-13 14:17:29
214阅读
常用的CI构建工具分析,CircleCI vs Travis CI vs Jenkins。
原创
2021-07-26 15:51:57
429阅读
问题 在进行 Travis CI 进行集成编译的时候出现错误。 < > 0% WAITINGThe command "eval ./gradlew assemble " failed. Retrying, 2 of 3. FAILURE: Build failed with an exception
转载
2019-07-14 01:51:00
45阅读
2评论
1CircleCI简介 CircleCI是用于CI和CD的基于云的工具。使用单元测试,集成测试和功能测试,它非常专注于测试所有提交的代码更改。Facebook,Kickstarter,Spotify,Lyft,Coinbase,Expedia,Stitch Fix和Dollar Shave Club等领先公司已经在CircleCI上成功运行了其开发过程。CircleCI成立于2011年,总部位于旧
原创
2021-03-12 10:10:11
302阅读
文章目录复制github仓库rust fmt使用安装运行配置宏使用与Travis ci集成rust clippy使用类别(组)安装运行配置宏使用与Travis ci集成travis-ci简介.travis.yml集成步骤复制github仓库# clone要复制的仓库git clone --bare https://github.com/nervosnetwork/tentacle.gitcd tentacle.git# 提前在github上创建新的项目仓库git push --mirror ht
原创
2021-07-09 16:37:26
1355阅读
https://travis-ci.com/github/SAP/spartacus/jobs/427985328dist: bioniclanguage: node_jsnode_js: - 12.16.1cache: yarngit: depth: falsebranches: only: -
原创
2021-07-13 14:32:29
499阅读
问题在进行 Travis CI 进行集成编译的时候出现错误。<-------------> 0% WAITINGThe command "eval ./gradlew assemble " failed. Retrying, 2 of 3.FAILURE: Build failed with an exception.* What went wrong:Task 'as...
原创
2021-08-11 09:35:19
249阅读
http://blog.csdn.net/r8hzgemq/article/details/49897905gitlab和sourcetree配置ssh绕坑http://blog.csdn.net/memgxingfeixiang/article/details/52486760Gitlab和SourceTree组合实现版本控制http://www.cnblogs.com/always
转载
2016-12-22 15:51:41
957阅读
gitlabrunner注册和安装gitlabserverrunnerrunnerrunnerrunner测试环境dockerimagerepositoryshelldockersshkubermetes在windows上装一个runner
原创
2020-04-08 20:48:25
449阅读
##一、不同stage间数据传输及不想要每个阶段都进行refetches all changes from the last commit [https://stackoverflow.com/questions/43719239/gitlab-deploy-job-fetches-changes- ...
转载
2021-07-23 15:44:00
317阅读
2评论