We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6e8bb1b + dcb65bd commit 2c2545dCopy full SHA for 2c2545d
.github/workflows/buildandtest.yml
@@ -77,3 +77,26 @@ jobs:
77
CTEST_OUTPUT_ON_FAILURE: 1
78
CTEST_PARALLEL_LEVEL: 2
79
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
97
+ - name: test
98
+ run: make test
99
+ env:
100
+ CTEST_OUTPUT_ON_FAILURE: 1
101
+ CTEST_PARALLEL_LEVEL: 2
102
0 commit comments