-
Notifications
You must be signed in to change notification settings - Fork 1
37 lines (32 loc) · 868 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
29
30
31
32
33
34
35
36
37
---
name: CI
# Controls when the workflow will run
on:
pull_request:
branches: [main, master]
workflow_dispatch:
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
root:
- "rootproject/root:latest"
#- "rootproject/root:6.20.08-ubuntu20.04"
#- "rootproject/root:6.24.06-arch"
#- "rootproject/root:6.22.06-fedora33"
#- "rootproject/root:6.22.08-centos7"
runs-on: ${{ matrix.os }}
container: ${{ matrix.root }}
steps:
- uses: actions/checkout@v4
- name: install libblas
run: apt-get install -y libblas-dev
- name: build
run: |
root-config --version
export EVNDISPSYS=$(echo $GITHUB_WORKSPACE)
export SOFASYS=${EVNDISPSYS}/sofa
./install_sofa.sh CI
make config
make -j 4 VTS