cmake: bump Avendish to master #14
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main, master] | |
| tags: ['v*'] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| # Build in/against ossia score: dev tree, SDK, and JIT artifact tracks. | |
| score: | |
| uses: ossia/actions/.github/workflows/score-addon.yml@master | |
| secrets: inherit | |
| with: | |
| release: false # the templates ship no release.sh | |
| # Build the same object(s) standalone, one artifact per back-end. | |
| standalone: | |
| uses: ossia/actions/.github/workflows/avnd-addon.yml@master | |
| secrets: inherit | |
| with: | |
| # Texture / video back-ends: | |
| # BACKENDS ossia max gstreamer:TEXTURE touchdesigner:TOP godot:TEXTURE python | |
| max: true | |
| gstreamer: true | |
| touchdesigner: true | |
| godot: true | |
| python: true |