Revert upstream commit 4dec62f4d4a0a496a8067e283bf66897fbf6e598 #5
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, package and release clang+llvm | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
permissions: | |
contents: write | |
jobs: | |
build: | |
strategy: | |
matrix: | |
arch: [x86-64, arm64] | |
os: [macos-13, macos-14] | |
exclude: | |
- os: macos-13 | |
arch: arm64 | |
- os: macos-14 | |
arch: x86-64 | |
fail-fast: true | |
max-parallel: 2 | |
uses: ./.github/workflows/jobs.yml | |
with: | |
arch: ${{ matrix.arch }} | |
os: ${{ matrix.os }} |