-
Notifications
You must be signed in to change notification settings - Fork 0
28 lines (28 loc) · 966 Bytes
/
ci.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
name: test
on: [push, pull_request]
jobs:
build:
name: ${{ matrix.os }} Ruby ${{ matrix.ruby }}
runs-on: ${{ matrix.os }}-latest
strategy:
matrix:
os: ["ubuntu"]
ruby: ["3.2"]
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- if: matrix.os == 'ubuntu'
run: sudo apt-get update -yq && sudo apt upgrade -yq && sudo apt-get install libjemalloc-dev
- if: matrix.os == 'macos'
run: brew update && brew install jemalloc
- if: matrix.os == 'ubuntu'
run: bundle exec rake odgi:build
- if: matrix.os == 'macos'
run: CC=/opt/homebrew/opt/llvm/bin/clang CXX=/opt/homebrew/opt/llvm/bin/clang++ LDFLAGS=-L/opt/homebrew/lib bundle exec rake odgi:build
- run: bundle exec rake compile
- run: bundle exec rake test