-
Notifications
You must be signed in to change notification settings - Fork 1
34 lines (34 loc) · 1.02 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
ruby: [ '3.0', '3.1', '3.2', '3.3' ]
env:
LIBTORCH_VERSION: 2.1.2
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
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
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: false
- name: Build and test with Rake
run: |
bundle config build.torch-rb --with-torch-dir=$HOME/libtorch
bundle install
bundle exec rake