Skip to content

Commit

Permalink
defer IIF_TEST for now
Browse files Browse the repository at this point in the history
  • Loading branch information
dehann committed Jun 29, 2021
1 parent 20b7678 commit 53d1e26
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,19 +73,28 @@ jobs:

test-cfg:
# if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/release**'
name: CGDFG 1.6 - ubuntu-latest - x64
runs-on: ubuntu-latest
name: w/ LGPL ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
env:
JULIA_PKG_SERVER: ""
strategy:
fail-fast: false
matrix:
version:
- '1.6'
os:
- ubuntu-latest
arch:
- x64
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup Julia
uses: julia-actions/setup-julia@v1
with:
version: 1.6
arch: x64
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}

- name: Install neo4j
run: |
Expand Down Expand Up @@ -124,7 +133,7 @@ jobs:
- name: Run tests
env:
IIF_TEST: true
IIF_TEST: false
DO_CGDFG_TESTS: true
DFG_USE_CGDFG: true
uses: julia-actions/julia-runtest@latest
Expand Down

0 comments on commit 53d1e26

Please sign in to comment.