MartellJenkins 2020-05-26
pipeline{ agent any stages { stage(‘Build‘) { steps{ echo ‘This is a build step‘ } } stage(‘Test‘) { steps{ echo ‘This is a test step‘ } } stage(‘Deploy‘) { steps{ echo ‘This is a deploy step‘ } } } } 然后将程序文件push到Gitlab上 2.在Jenkins系统管理,系统配置中,在Gitlab处添加相关信息 下面点击添加凭据,类型选择GitLab Api Token,由于这个Token需要由GitLab来提供,所以先到GitLab生成一个Api Token 3.生成Api Token 点击创建之后,Token就生效了 将Api Token复制到Jenkins中,点击添加 添加完成后,就可以在Credentials中选择刚刚添加好的凭据 点击保存,这样系统配置中的Gitlab的全局配置就生效了 4.新建流水线任务测试 下面打开Jenkins,新建一个流水线发布任务,取名test,然后点击确定. 勾选构建触发器 由于我们需要达到的目的是在GitLab提交代码,Jenkins可以自动构建相关任务,所以我们还需要配置一个触发器。如图,点击下面的"高级"按钮 点击“Generate”,生成一个SecretToken 然后再流水线Tab定义处,下拉选择“Pipeline script from SCM”,SCM选择Git,然后填写代码库的地址和访问用户密码,下面脚本路径有个Jenkinsfile,意思就是从我们提交到源代码管理根目录下面的Jenkinsfile中读取相关定义好的的流水线任务流程 点击保存 在Gitlab如下图地方进入,来配置web钩子 将在Jenkin中截图的一个url和生成的token分别填写在下方,在触发器的地方勾选上 Push events,然后点击下方的“Add webhook” 按钮。如果你还有其他事件发生时想触发Jenkins的任务,也可以自行勾选上 添加完成后点击测试 这个时候可以看到上方出现了成功的提示 而另一边Jenkins中,正在执行任务,并且任务的执行是 GitLab有推送任务 完成之后,可以看到流水线任务流程图 下面通过代码推送来测一下,我在跟目录新建一个空的README.md文件,然后推送,推送完成后可以看到Jenkins开始执行第二次构建任务 至此,从GitLab提交代码到Jenkins自动构建的整个流程已经完成了,细心的你会发现,只是流程跑通了,这个Jenkinsfile没有实质性的内容,下面进入Jenkinsfile 四.接入Jenkinsfile,Dockerfile实现自动发布 编写Dockerfile如下: FROM mcr.microsoft.com/dotnet/core/sdk:3.1-buster AS build COPY *.csproj ./app/ WORKDIR /app RUN dotnet restore COPY . ./ RUN dotnet publish -o out /p:PublishWithAspNetCoreTargetManifest="false" FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-buster-slim AS runtime ENV ASPNETCORE_URLS http://+:80 WORKDIR /app COPY --from=build /app/out ./ ENTRYPOINT ["dotnet", "WebApplication_Jenkinsfile.dll"]
pipeline{ agent any stages { stage(‘Checkout‘) { steps{ git credentialsId: ‘85ca7e47-532e-4901-9828-50a8da071d16‘, url: ‘http://xxx.gitlab.com/webapplication_jenkinsfile.git‘, branch:‘master‘ echo ‘---This is a Checkout step---‘ } } stage(‘Build‘) { steps{ sh ‘‘‘cd WebApplication_Jenkinsfile docker rmi -f docker_webapplication_test:1.0 docker build -t docker_webapplication_test:1.0 .‘‘‘ echo ‘---This is a Build step---‘ } } stage(‘Run‘) { steps{ sh ‘‘‘docker rm -f docker_webapplication_test docker run --name docker_webapplication_test -d -p 7489:80 docker_webapplication_test:1.0 ‘‘‘ echo ‘---This is a run step---‘ } } } }
说明: