You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
415 B
28 lines
415 B
kind: pipeline
|
|
type: exec
|
|
name: windows打包exe
|
|
host_aliases:
|
|
- ip: 192.168.0.2
|
|
hostnames:
|
|
- git.1000my.com
|
|
platform:
|
|
os: windows
|
|
arch: amd64
|
|
# version: 1809
|
|
clone:
|
|
pull: if-not-exists
|
|
depth: 1
|
|
trigger:
|
|
branch:
|
|
- master
|
|
event:
|
|
- push
|
|
steps:
|
|
- name: greeting
|
|
commands:
|
|
- echo hello world
|
|
- ping git.1000my.com
|
|
- ipconfig
|
|
- makensis AB.nsi
|
|
- ls
|
|
|
|
|