-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathappveyor.yml
69 lines (51 loc) · 1.88 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
version: '{build}'
pull_requests:
do_not_increment_build_number: true
branches:
only:
- master
image: Visual Studio 2022
nuget:
disable_publish_on_pr: true
install:
- git submodule update --init --recursive
build_script:
- cmd: >-
.\psake.cmd ci
7z a EventMeshCLI.zip .\build\results\eventMeshCLI\*
7z a EventMeshService.zip .\build\results\eventMeshService\*
7z a EventMeshProtocolsAMQP.zip .\build\results\protocolPlugins\FaasNet.EventMesh.Protocols.AMQP\*
7z a EventMeshProtocolsWebsocket.zip .\build\results\protocolPlugins\FaasNet.EventMesh.Protocols.WebSocket\*
7z a EventMeshSinksAMQP.zip .\build\results\sinkPlugins\FaasNet.EventMesh.Sink.AMQP\*
7z a EventMeshSinksKafka.zip .\build\results\sinkPlugins\FaasNet.EventMesh.Sink.Kafka\*
7z a EventMeshSinksVpnBridge.zip .\build\results\sinkPlugins\FaasNet.EventMesh.Sink.VpnBridge\*
7z a EventMeshDiscoveryConfig.zip .\build\results\discoveryPlugins\FaasNet.RaftConsensus.Discovery.Config
7z a EventMeshDiscoveryEtcd.zip .\build\results\discoveryPlugins\FaasNet.RaftConsensus.Discovery.Etcd
test: off
artifacts:
- path: EventMeshCLI.zip
name: EventMeshCLI.zip
- path: EventMeshService.zip
name: EventMeshService.zip
- path: EventMeshProtocolsAMQP.zip
name: EventMeshProtocolsAMQP.zip
- path: EventMeshProtocolsWebsocket.zip
name: EventMeshProtocolsWebsocket.zip
- path: EventMeshSinksAMQP.zip
name: EventMeshSinksAMQP.zip
- path: EventMeshSinksKafka.zip
name: EventMeshSinksKafka.zip
- path: EventMeshSinksVpnBridge.zip
name: EventMeshSinksVpnBridge.zip
- path: EventMeshDiscoveryConfig.zip
name: EventMeshDiscoveryConfig.zip
- path: EventMeshDiscoveryEtcd.zip
name: EventMeshDiscoveryEtcd.zip
deploy:
- provider: GitHub
auth_token:
secure: +U/L+mprfN3zjYnRB3B4oCdZlfGAiHv1hnVZZglvDQj0Mew4Y2I5BQoCli8hJd6u
artifact: /.*\.zip/
on:
branch: master
appveyor_repo_tag: true