首页
Python
Java
IOS
Andorid
NodeJS
JavaScript
HTML5
【
Gitlab Runner的使用(涵盖gitlab-page)
】的更多相关文章
Gitlab CI持续集成 - GitLab Runner 安装与注册
GitLab Runner安装 需要添加gitlab官方库: # For Debian/Ubuntu/Mint curl -L https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.deb.sh | sudo bash # For RHEL/CentOS/Fedora curl -L https://packages.gitlab.com/install/repositories/runner/g…
GitLab Runner
GitLab Runner是一个开源项目,用于运行你的作业(jobs)并将结果发送回GitLab.它与GitLab CI结合使用,GitLab CI是GitLab用于协调jobs的开源持续集成服务. 1. Install Install GitLab Runner using the official GitLab repositories (首选) 1.添加GitLab的官方仓库: # For RHEL/CentOS/Fedora curl -L https://packages.gitlab…
Gitlab Runner的分布式缓存实战
欢迎访问我的GitHub https://github.com/zq2599/blog_demos 内容:所有原创文章分类汇总及配套源码,涉及Java.Docker.Kubernetes.DevOPS等: 关于本文 本文目标是为K8S环境的Gitlab Runner准备好分布式缓存,并在pipeline脚本中使用该缓存,因此,在阅读本文前建议您对GitLab CI有一定了解,最好是阅读过甚至编写过pipeline脚本: 关于GitLab Runner 如下图所示,开发者将代码提交到GitLab后…
Gitlab Runner的使用(涵盖gitlab-page)
#gitlab-runner 的简单安装和部署##背景 因为公司要使用CI 功能,已经使用gitlab-page的功能能,所以这里记录一下 ###安装步骤: 参考官方文档:https://docs.gitlab.com/runner/install/linux-repository.html 找到自己的系统,然后执行一下即可: curl -L https://packages.gitlab.com/install/repositories/runner/gitlab-runne…
使用gitlab runner 进行CI(四):使用Gitlab Page托管项目文档
目录 1.什么是Gitlab Pages 2.开启Gitlab Pages 3.基本过程 4.托管markdown文档 4.1 安装sphinx等依赖 4.2 配置项目的sphinx配置 4.3 编写项目文档 4.4 创建首页索引 4.5 配置gitlab-ci.yml 4.6 生成网页 4.7 配置DNS或者hosts文件 5.预览和调试 5.1 直接使用sphinx命令生成网页 5.2 VScode+sphinx插件预览 5.3 下载Gitlab生成的网页 总结 这段时间准备软考去了,也挺久…
gitlab runner安装与使用
今天来讲一下如何使用gitlab-runner 下载runner,根据自己对应服务器的型号自行选择下载: # Linux x86- sudo wget -O /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-linux-amd64 # Linux x86 sudo wget -O /usr/local/bin/gitlab-runn…
超详细Gitlab Runner环境配置中文教程
配置GitlabRunner环境 GitLab Runner 是一个开源项目, 它用来运行你定制的任务(jobs)并把结果返回给 GitLab. GitLab Runner 配合GitLab CI(GitLab 内置的持续集成服务) 协调完成任务. 本文将记录将一台闲置的iMac mini配置一个Specific Runner环境. 其他平台可以同时参考这个教程 本教程写的过于详细所以篇较长,需要一些耐心才可以完成配置 1.下载二进制文件到电脑上 下载这个需要梯子 sudo curl --out…
gitlab runner 配置
gitlab runnerhttps://scarletsky.github.io/2016/07/29/use-gitlab-ci-for-continuous-integration/https://menglei.tk/2017/01/18/gitlab-runner/https://segmentfault.com/a/1190000007180257https://blog.csdn.net/frankcheng5143/article/details/79838414https://…
gitlab runner 填坑记
一.Gitlab Runner CI/CD 错误: Couldn't connect to Docker daemon at http+docker://localhost - is it running? If it's at a non-standard location, specify the URL with the DOCKER_HOST environment variable. ERROR: Job failed: exit status 解决办法: # 修改权限$chmod…
基础架构之Gitlab Runner
基础架构之Gitlab Runner也是常用的基础设施,我们接着GitLab操作,具体使用GitlabRunner,如果不熟悉可以见官方详细介绍https://docs.gitlab.com/runner,这篇文章主要介绍安装及项目使用. (一) 环境要求 Centos 7.5.1804 Docker 18.06.1-ce gitlab/gitlab-ce gitlab/gitlab-runner (二) 安装设置 GitLab设置 a) 知道上篇文章,我们创建的demo项目,依次…