Prepare to return Device instead of String #204
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 | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- ruby: 3.3 | |
os: ubuntu-24.04 | |
- ruby: 3.2 | |
os: ubuntu-22.04 | |
- ruby: 3.1 | |
os: ubuntu-20.04 | |
env: | |
LIBTORCH_VERSION: 2.5.1 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- uses: actions/cache@v4 | |
with: | |
path: ~/libtorch | |
key: libtorch-${{ env.LIBTORCH_VERSION }} | |
id: cache-libtorch | |
- name: Download LibTorch | |
if: steps.cache-libtorch.outputs.cache-hit != 'true' | |
run: | | |
cd ~ | |
wget -q -O libtorch.zip https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-$LIBTORCH_VERSION%2Bcpu.zip | |
unzip -q libtorch.zip | |
- run: MAKE="make -j$(nproc)" bundle exec rake compile -- --with-torch-dir=$HOME/libtorch | |
- run: bundle exec rake test |