jekins job configure找不到remote trigger(script)
今天想测试一下,remote的方式启动一个job,但是在“构建触发器”一栏根本找不到remote trigger,很惊讶的是在网上所有的doc或者demo里都是有这个选项的。
最后,终于找到了原因:
要启动安全,系统管理-》Configure global security-》启用安全。
再回来到job的configure页,

ok, 找到了~
顺便介绍一下jekins的trigger:
一 Jenkins内置的trigger插件
1) build after other projects are built
可以设置多个依赖的jobs,当任意一个依赖的jobs成功后启动此build。 多个依赖的jobs间使用,隔开。
2) Trigger builds remotely (e.g., from scripts)
在Authentication Token中指定TOKEN_NAME,然后可以通过连接JENKINS_URL/job/JOBNAME/build?token=TOKEN_NAME来启动build。
3) build periodically
在schedule中设置,语法类似于cron中语法。
4) Poll SCM
在schedule中设置时间间隔来抓取SCM server,如果有新的修改,则启动build。 所以这里的作用相当于continous build。
二 其他的trigger插件
需要手动安装插件。
jekins job configure找不到remote trigger(script)的更多相关文章
- Configure Security Settings for Remote Desktop(RDP) Services Connections
		
catalogue . Configure Server Authentication and Encryption Levels . Configure Network Level Authenti ...
 - Myeclipse 找不到Convert to maven project选项
		
https://my.oschina.net/u/2419190/blog/504417 Window > Preferences > General > Capabilities ...
 - 转:Remote debugging with Visual Studio 2010
		
Original URL http://www.codeproject.com/Articles/146838/Remote-debugging-with-Visual-Studio-2010 you ...
 - Remote Debugging (1)
		
The client/server design of the Java debugger allows you to launch a Java program from computer on y ...
 - ./configure、make、make install 命令
		
https://www.cnblogs.com/tinywan/p/7230039.html https://www.sohu.com/a/191735643_505857 ./configure 该 ...
 - linux ./configure 的参数详解
		
转载自http://blog.csdn.net/zjt289198457/article/details/6918656 linux ./configure 的参数详解 ./configure 该 ...
 - Enabling Remote Errors in SSRS
		
January 18, 2011 By default the remote errors property in SQL Server Reporting Services is set to fa ...
 - Spring Boot文档
		
本文来自于springboot官方文档 地址:https://docs.spring.io/spring-boot/docs/current/reference/html/ Spring Boot参考 ...
 - BI--SDN上收集到的SAP BI的极好文章的链接
		
1)Overviewhttps://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/60981d00-ca87-2910-fdb ...
 
随机推荐
- matplotlib-plot-style
			
style 1.绘制x=1 2.不同线宽 enumerate(Widths) 3.线型(实线,虚线,点划线) linestyle set_dashes 4.自动设置线颜色 5.点的显示形式 marke ...
 - 了解PHP中$_SERVER变量对路径的解析
			
1,$_SERVER["QUERY_STRING"]说明:查询(query)的字符串 2,$_SERVER["REQUEST_URI"]说明:访问此页面所需的U ...
 - Java输出字符串格式问题  .UnknownFormatConversionException
			
今天遇到一个问题,使用JSoup挖掘出的数据一直出错 Exception in thread "main" java.util.UnknownFormatConversionExc ...
 - Java中各种集合(字符串类)的线程安全性!!!
			
Java中各种集合(字符串类)的线程安全性!!! 一.概念: 线程安全:就是当多线程访问时,采用了加锁的机制:即当一个线程访问该类的某个数据时,会对这个数据进行保护,其他线程不能对其访问,直到该线程读 ...
 - [算法]和为S的两个数字
			
题目描述 输入一个递增排序的数组和一个数字S,在数组中查找两个数,使得他们的和正好是S,如果有多对数字的和等于S,输出两个数的乘积最小的. 对应每个测试案例,输出两个数,小的先输出. 思路 定义两个指 ...
 - 【转载】解决Windows和Ubuntu时间不一致的问题
			
大家在切换操作系统的时候会发现一个问题, Windows 和Ubuntu的时间会出现不一致的情况.在 Windows 中把时间设置正确了过后,回到在 Ubuntu 后系统的时间又不一样了,在 Ubun ...
 - JavaScript(九):JavaScript中的内置对象
			
一.对象的概念 对象是一种特殊的数据类型(object). 拥有一系列的属性和方法. 分为内置对象和自定义对象. 二.String对象 String对象用来支持对于字符串的处理. 1.属性 lengt ...
 - spring boot @ConditionalOnxxx相关注解总结
			
Spring boot @ConditionalOnxxx相关注解总结 下面来介绍如何使用@Condition public class TestCondition implements Condit ...
 - Graph-BFS-图的广度优先遍历
			
#include <iostream> #include <queue> using namespace std; /* 5 5 1 2 1 3 1 5 2 4 3 5 1 2 ...
 - eclipse配置代码自动提示
			
Eclipse默认只有"."之后才有代码提示. [windows-->preferences] 把这里的点改成[.abcdefghijklmnopqrstuvwxyzABCD ...