Skip to content

Commit 53d1e26

Browse files
committed
defer IIF_TEST for now
1 parent 20b7678 commit 53d1e26

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,19 +73,28 @@ jobs:
7373

7474
test-cfg:
7575
# if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/release**'
76-
name: CGDFG 1.6 - ubuntu-latest - x64
77-
runs-on: ubuntu-latest
76+
name: w/ LGPL ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
77+
runs-on: ${{ matrix.os }}
7878
env:
7979
JULIA_PKG_SERVER: ""
80+
strategy:
81+
fail-fast: false
82+
matrix:
83+
version:
84+
- '1.6'
85+
os:
86+
- ubuntu-latest
87+
arch:
88+
- x64
8089
steps:
8190
- name: Checkout
8291
uses: actions/checkout@v2
8392

8493
- name: Setup Julia
8594
uses: julia-actions/setup-julia@v1
8695
with:
87-
version: 1.6
88-
arch: x64
96+
version: ${{ matrix.version }}
97+
arch: ${{ matrix.arch }}
8998

9099
- name: Install neo4j
91100
run: |
@@ -124,7 +133,7 @@ jobs:
124133
125134
- name: Run tests
126135
env:
127-
IIF_TEST: true
136+
IIF_TEST: false
128137
DO_CGDFG_TESTS: true
129138
DFG_USE_CGDFG: true
130139
uses: julia-actions/julia-runtest@latest

0 commit comments

Comments
 (0)