File tree Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -75,15 +75,27 @@ jobs:
75
75
if : github.ref == 'refs/heads/master' || github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/release**'
76
76
name : CGDFG, Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
77
77
runs-on : ubuntu-latest
78
+ runs-on : ${{ matrix.os }}
79
+ env :
80
+ JULIA_PKG_SERVER : " "
81
+ strategy :
82
+ fail-fast : true
83
+ matrix :
84
+ version :
85
+ - ' 1.6'
86
+ os :
87
+ - ubuntu-latest
88
+ arch :
89
+ - x64
78
90
steps :
79
91
- name : Checkout
80
92
uses : actions/checkout@v2
81
93
82
94
- name : Setup Julia
83
95
uses : julia-actions/setup-julia@v1
84
96
with :
85
- version : 1.6
86
- arch : x64
97
+ version : ${{ matrix.version }}
98
+ arch : ${{ matrix.arch }}
87
99
88
100
- name : Install neo4j
89
101
run : |
@@ -134,8 +146,6 @@ jobs:
134
146
uses : codecov/codecov-action@v1
135
147
with :
136
148
file : lcov.info
137
- # run: |
138
- # julia -e 'using Pkg; cd(Pkg.dir("DistributedFactorGraphs")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
139
149
140
150
docs :
141
151
needs : test
You can’t perform that action at this time.
0 commit comments