Skip to content

Commit 24aac8d

Browse files
committed
more ci organization
1 parent 1624709 commit 24aac8d

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,15 +75,27 @@ jobs:
7575
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/release**'
7676
name: CGDFG, Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
7777
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
7890
steps:
7991
- name: Checkout
8092
uses: actions/checkout@v2
8193

8294
- name: Setup Julia
8395
uses: julia-actions/setup-julia@v1
8496
with:
85-
version: 1.6
86-
arch: x64
97+
version: ${{ matrix.version }}
98+
arch: ${{ matrix.arch }}
8799

88100
- name: Install neo4j
89101
run: |
@@ -134,8 +146,6 @@ jobs:
134146
uses: codecov/codecov-action@v1
135147
with:
136148
file: lcov.info
137-
# run: |
138-
# julia -e 'using Pkg; cd(Pkg.dir("DistributedFactorGraphs")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
139149

140150
docs:
141151
needs: test

0 commit comments

Comments
 (0)