Skip to content

Commit dcb65bd

Browse files
committed
Run CI tests on macos
1 parent 6e8bb1b commit dcb65bd

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/buildandtest.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,3 +77,26 @@ jobs:
7777
CTEST_OUTPUT_ON_FAILURE: 1
7878
CTEST_PARALLEL_LEVEL: 2
7979
working-directory: build
80+
81+
build-test-python-macos-clang:
82+
name: builds taco and pytaco on macos with clang and runs all tests
83+
runs-on: macos-10.15
84+
85+
steps:
86+
- uses: actions/checkout@v2
87+
- name: install numpy and scipy
88+
run: pip3 install numpy scipy
89+
- name: create_build
90+
run: mkdir build
91+
- name: cmake
92+
run: cmake -DCMAKE_BUILD_TYPE=Debug -DPYTHON=ON ..
93+
working-directory: build
94+
- name: make
95+
run: make -j2
96+
working-directory: build
97+
- name: test
98+
run: make test
99+
env:
100+
CTEST_OUTPUT_ON_FAILURE: 1
101+
CTEST_PARALLEL_LEVEL: 2
102+
working-directory: build

0 commit comments

Comments
 (0)