Build toolchain #53
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: Build toolchain | |
on: | |
# 清理 Cache 后触发 | |
workflow_run: | |
workflows: [Cleanup caches by a branch] | |
types: completed | |
# 手动触发 | |
workflow_dispatch: | |
env: | |
MACOSX_DEPLOYMENT_TARGET: 11.0 | |
jobs: | |
build: | |
name: Build | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- windows-latest | |
- windows-2019 | |
- macos-latest | |
- ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- uses: ./.github/actions/install-dependencies | |
with: | |
os_name: ${{ matrix.os }} |