We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3df85d1 commit 4915a35Copy full SHA for 4915a35
scripts/trigger_travis_build.sh
@@ -1,4 +1,4 @@
1
-body='{
+travis_body='{
2
"request": {
3
"message": "Test prebuilt binaries",
4
"branch": "prebuilt-testing"
@@ -9,5 +9,18 @@ curl -s -X POST \
9
-H "Accept: application/json" \
10
-H "Travis-API-Version: 3" \
11
-H "Authorization: token $TRAVIS_TOKEN" \
12
- -d "$body" \
+ -d "$travis_body" \
13
https://api.travis-ci.org/repo/zeromq%2Fzeromq.js/requests
14
+
15
+appveyor_body='{
16
+ "accountName": "zeromq",
17
+ "projectSlug": "zeromq-js",
18
+ "branch": "prebuilt-testing",
19
+}'
20
21
+curl -s -X POST \
22
+ -H "Content-Type: application/json" \
23
+ -H "Accept: application/json" \
24
+ -H "Authorization: Bearer $APPVEYOR_TOKEN" \
25
+ -d "$appveyor_body" \
26
+ https://ci.appveyor.com/api/builds
0 commit comments