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.
1 parent f8daedf commit f885cd7Copy full SHA for f885cd7
.github/workflows/CI.yml
@@ -83,6 +83,7 @@ jobs:
83
- uses: julia-actions/cache@v1
84
- uses: julia-actions/julia-buildpkg@v1
85
- name: Run tests
86
+ id: run-tests
87
continue-on-error: ${{ matrix.test_name == 'enzyme' }}
88
run: |
89
julia --color=yes -e 'import Pkg; Pkg.add("Coverage")'
@@ -91,6 +92,7 @@ jobs:
91
92
shell: bash
93
- name: Coveralls
94
uses: coverallsapp/github-action@v2
95
+ if: steps.run-tests.outcome == 'success'
96
with:
97
parallel: true
98
path-to-lcov: lcov.info
test/test_enzyme.jl
@@ -1,3 +1,4 @@
1
+# TODO: This test is broken again due to segfault
2
using Test
3
using Enzyme
4
using DynamicExpressions
0 commit comments