Add libtorch-2.3 for arm64 #29
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: macos | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup tool-chains | |
run: | | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
- name: Install libtorch | |
run: | | |
brew tap hasktorch/libtorch-prebuild https://github.com/hasktorch/homebrew-libtorch-prebuild | |
brew install libtorch-prebuild | |
- name: Test libtorch | |
run: | | |
brew audit --strict libtorch-prebuild | |
brew test libtorch-prebuild |