File: trigger-python.yml

package info (click to toggle)
gtsam 4.2.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 46,108 kB
  • sloc: cpp: 127,191; python: 14,312; xml: 8,442; makefile: 252; sh: 119; ansic: 101
file content (17 lines) | stat: -rw-r--r-- 519 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# This triggers Python builds on `gtsam-manylinux-build`
name: Trigger Python Builds
on:
  push:
    branches:
      - develop
jobs:
  triggerPython:
    runs-on: ubuntu-latest
    steps:
      - name: Repository Dispatch
        uses: ProfFan/repository-dispatch@master
        with:
          token: ${{ secrets.PYTHON_CI_REPO_ACCESS_TOKEN }}
          repository: borglab/gtsam-manylinux-build
          event-type: python-wrapper
          client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}'