use clang 16 #46
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 Ventura Binaries | |
on: | |
push: | |
workflow_dispatch: | |
release: | |
types: [published] | |
jobs: | |
build: | |
name: Build | |
runs-on: macos-13 | |
env: | |
AUTO_TARGET: "13" | |
AUTO_QC: "Skip" | |
TERM: "xterm-256color" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Fetch dependencies | |
run: /bin/zsh Dependencies.tool | |
- name: Build | |
run: /bin/zsh Build.tool | |
- name: Upload binaries | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Ventura-Binaries | |
path: Build/13 |