Add cmake + native windows support for asymptote, with fully working make support #1
Workflow file for this run
This file contains 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: pull-request-precheck | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: | ||
- "master" | ||
- "a/*" | ||
jobs: | ||
build-asy-linux: | ||
uses: ./.github/workflows/build-asy-linux.yml | ||
build-asy-windows: | ||
uses: ./.github/workflows/build-asy-windows.yml | ||
Check failure on line 14 in .github/workflows/pull-req-precheck.yml GitHub Actions / pull-request-precheckInvalid workflow file
|
||
test-asy-linux: | ||
needs: [build-asy-linux] | ||
uses: ./.github/workflows/test-asy-linux.yml | ||
test-asy-windows: | ||
needs: [build-asy-windows] | ||
uses: ./.github/workflows/test-asy-windows.yml | ||
build-gui: | ||
uses: ./.github/workflows/build-gui.yml |