-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (46 loc) · 1.29 KB
/
test.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: "Linux"
on:
push:
branches:
- main # Adjust this to your main branch name
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup C++ Environment
run: |
sudo apt update && sudo apt install -y g++ libomp-dev libopenblas-dev libmkl-dev intel-mkl python3-pip python3-virtualenv
- name: Install Gtest
run: |
git clone https://github.com/google/googletest.git
cd googletest
mkdir build
cd build
cmake .. -DBUILD_GMOCK=OFF
make -j
sudo make install
- name: Git Clone TTM Repo
run: |
cd ${GITHUB_WORKSPACE}
git clone https://github.com/bassoy/ttm.git
- name: Build and Run Tests (Intel MKL)
run: |
cd ttm/test
make clean && make -j BLAS_FLAG=MKL
./bin/main
- name: Build and Run Tests (OpenBLAS)
run: |
cd ttm/test
make clean && make -j BLAS_FLAG=OPENBLAS
./bin/main
- name: Build and Run Python Wrapper Tests (OpenBLAS)
run: |
cd ttm/ttmpy
virtualenv ~/env-ttm
source ~/env-ttm/bin/activate
pip install -e .
cd tests
python3 -m unittest discover -v
deactivate