aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authordeadprogram <[email protected]>2022-07-12 00:08:14 +0200
committerdeadprogram <[email protected]>2022-07-12 17:14:49 +0200
commit2f843af286f7301d99c5833457b6baaf9bba4b48 (patch)
tree48e93397a3da0fe2196a4083613e8a7870fc0e9b /.github
parent7afc47d67ac7f442c6f6f77fbdd5574aede0fb77 (diff)
downloadtinygo-2f843af286f7301d99c5833457b6baaf9bba4b48.tar.gz
tinygo-2f843af286f7301d99c5833457b6baaf9bba4b48.zip
build: run tests on drivers and bluetooth repos after successful docker dev build
Signed-off-by: deadprogram <[email protected]>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/docker.yml22
1 files changed, 12 insertions, 10 deletions
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml
index ed2496246..1b704fddf 100644
--- a/.github/workflows/docker.yml
+++ b/.github/workflows/docker.yml
@@ -55,18 +55,20 @@ jobs:
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
- - name: Trigger Drivers repo build on CircleCI
+ - name: Trigger Drivers repo build on Github Actions
run: |
- curl --location --request POST 'https://circleci.com/api/v2/project/github/tinygo-org/drivers/pipeline' \
- --header 'Content-Type: application/json' \
- -d '{"branch": "dev"}' \
- -u "${{ secrets.CIRCLECI_API_TOKEN }}"
- - name: Trigger Bluetooth repo build on CircleCI
+ curl -X POST \
+ -H "Authorization: Bearer ${{secrets.GHA_ACCESS_TOKEN}}" \
+ -H "Accept: application/vnd.github.v3+json" \
+ https://api.github.com/repos/tinygo-org/drivers/actions/workflows/build.yml/dispatches \
+ -d '{"ref": "dev"}'
+ - name: Trigger Bluetooth repo build on Github Actions
run: |
- curl --location --request POST 'https://circleci.com/api/v2/project/github/tinygo-org/bluetooth/pipeline' \
- --header 'Content-Type: application/json' \
- -d '{"branch": "dev"}' \
- -u "${{ secrets.CIRCLECI_API_TOKEN }}"
+ curl -X POST \
+ -H "Authorization: Bearer ${{secrets.GHA_ACCESS_TOKEN}}" \
+ -H "Accept: application/vnd.github.v3+json" \
+ https://api.github.com/repos/tinygo-org/bluetooth/actions/workflows/linux.yml/dispatches \
+ -d '{"ref": "dev"}'
- name: Trigger TinyFS repo build on CircleCI
run: |
curl --location --request POST 'https://circleci.com/api/v2/project/github/tinygo-org/tinyfs/pipeline' \