Updated intPart to use uint16 #245
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 Compile | |
on: | |
push: | |
branches: [ "*" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: brew install cmake ninja xcodes | |
- name: Build | |
run: | | |
cmake -H. -Bbuild-cmake -GNinja -DCMAKE_BUILD_TYPE=Release | |
cmake --build build-cmake -j | |
- name: Create Package | |
run: | | |
mkdir torch-release | |
mv build-cmake/torch torch-release/ | |
- name: Publish packaged artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: torch-mac-x64 | |
path: torch-release |