Make llvm_bin work for arm and correct llvm archive name #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: Darwin LLVM build | |
on: [push, pull_request] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
LLVM_VERSION: 15.0.7 | |
MACOSX_DEPLOYMENT_TARGET: 10.11 | |
jobs: | |
llvm-build: | |
runs-on: macos-13 | |
steps: | |
- name: Download Crystal source | |
uses: actions/checkout@v4 | |
- name: Prepare folders | |
run: | | |
brew update | |
brew install pkgconfig libtool cmake | |
sudo mkdir -p /opt/llvm | |
sudo chown $(whoami) /opt/llvm/ | |
sudo mkdir -p /var/cache | |
sudo chown $(whoami) /var/cache |