Skip to content

Commit eed7833

Browse files
committed
build: trigger builds of dev branches of repos in TinyGo ecosystem, e.g. Bluetooth, TinyFS, TinyFont, TinyDraw
Signed-off-by: deadprogram <[email protected]>
1 parent 5141638 commit eed7833

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/docker.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,3 +57,27 @@ jobs:
5757
--header 'Content-Type: application/json' \
5858
-d '{"branch": "dev"}' \
5959
-u "${{ secrets.CIRCLECI_API_TOKEN }}"
60+
- name: Trigger Bluetooth repo build on CircleCI
61+
run: |
62+
curl --location --request POST 'https://circleci.com/api/v2/project/github/tinygo-org/bluetooth/pipeline' \
63+
--header 'Content-Type: application/json' \
64+
-d '{"branch": "dev"}' \
65+
-u "${{ secrets.CIRCLECI_API_TOKEN }}"
66+
- name: Trigger TinyFS repo build on CircleCI
67+
run: |
68+
curl --location --request POST 'https://circleci.com/api/v2/project/github/tinygo-org/tinyfs/pipeline' \
69+
--header 'Content-Type: application/json' \
70+
-d '{"branch": "dev"}' \
71+
-u "${{ secrets.CIRCLECI_API_TOKEN }}"
72+
- name: Trigger TinyFont repo build on CircleCI
73+
run: |
74+
curl --location --request POST 'https://circleci.com/api/v2/project/github/tinygo-org/tinyfont/pipeline' \
75+
--header 'Content-Type: application/json' \
76+
-d '{"branch": "dev"}' \
77+
-u "${{ secrets.CIRCLECI_API_TOKEN }}"
78+
- name: Trigger TinyDraw repo build on CircleCI
79+
run: |
80+
curl --location --request POST 'https://circleci.com/api/v2/project/github/tinygo-org/tinydraw/pipeline' \
81+
--header 'Content-Type: application/json' \
82+
-d '{"branch": "dev"}' \
83+
-u "${{ secrets.CIRCLECI_API_TOKEN }}"

0 commit comments

Comments
 (0)