Skip to content

Commit 26ea3fa

Browse files
committed
try fix
1 parent fec6cd0 commit 26ea3fa

File tree

1 file changed

+56
-56
lines changed

1 file changed

+56
-56
lines changed

.github/workflows/ci.yml

Lines changed: 56 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@ 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, Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
76+
name: CGDFG ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
7777
runs-on: ${{ matrix.os }}
7878
env:
7979
JULIA_PKG_SERVER: ""
8080
strategy:
81-
fail-fast: true
81+
fail-fast: false
8282
matrix:
8383
version:
8484
- '1.6'
@@ -87,64 +87,64 @@ jobs:
8787
arch:
8888
- x64
8989
steps:
90-
- name: Checkout
91-
uses: actions/checkout@v2
90+
- name: Checkout
91+
uses: actions/checkout@v2
9292

93-
- name: Setup Julia
94-
uses: julia-actions/setup-julia@v1
95-
with:
96-
version: ${{ matrix.version }}
97-
arch: ${{ matrix.arch }}
93+
- name: Setup Julia
94+
uses: julia-actions/setup-julia@v1
95+
with:
96+
version: ${{ matrix.version }}
97+
arch: ${{ matrix.arch }}
9898

99-
- name: Install neo4j
100-
run: |
101-
sudo add-apt-repository -y ppa:openjdk-r/ppa
102-
sudo apt-get update
103-
wget -O - https://debian.neo4j.com/neotechnology.gpg.key | sudo apt-key add -
104-
echo 'deb https://debian.neo4j.com stable 3.5' | sudo tee /etc/apt/sources.list.d/neo4j.list
105-
sudo apt-get update
106-
apt list -a neo4j
107-
sudo apt-get install neo4j
108-
sudo service neo4j start
109-
sleep 10
110-
curl -v POST http://neo4j:neo4j@localhost:7474/user/neo4j/password -d"password=test"
111-
# sudo neo4j-admin set-initial-password test
112-
curl -I http://localhost:7474/
99+
- name: Install neo4j
100+
run: |
101+
sudo add-apt-repository -y ppa:openjdk-r/ppa
102+
sudo apt-get update
103+
wget -O - https://debian.neo4j.com/neotechnology.gpg.key | sudo apt-key add -
104+
echo 'deb https://debian.neo4j.com stable 3.5' | sudo tee /etc/apt/sources.list.d/neo4j.list
105+
sudo apt-get update
106+
apt list -a neo4j
107+
sudo apt-get install neo4j
108+
sudo service neo4j start
109+
sleep 10
110+
curl -v POST http://neo4j:neo4j@localhost:7474/user/neo4j/password -d"password=test"
111+
# sudo neo4j-admin set-initial-password test
112+
curl -I http://localhost:7474/
113113
114-
- name: Cache Artifacts
115-
uses: actions/cache@v1
116-
env:
117-
cache-name: cache-artifacts
118-
with:
119-
path: ~/.julia/artifacts
120-
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
121-
restore-keys: |
122-
${{ runner.os }}-test-${{ env.cache-name }}-
123-
${{ runner.os }}-test-
124-
${{ runner.os }}-
114+
- name: Cache Artifacts
115+
uses: actions/cache@v1
116+
env:
117+
cache-name: cache-artifacts
118+
with:
119+
path: ~/.julia/artifacts
120+
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
121+
restore-keys: |
122+
${{ runner.os }}-test-${{ env.cache-name }}-
123+
${{ runner.os }}-test-
124+
${{ runner.os }}-
125125
126-
- name: Julia Build Pkg
127-
uses: julia-actions/julia-buildpkg@latest
128-
129-
- name: Git Test Credentials
130-
run: |
131-
git config --global user.name Tester
132-
git config --global user.email [email protected]
133-
134-
- name: Run tests
135-
env:
136-
IIF_TEST: true
137-
DO_CGDFG_TESTS: true
138-
DFG_USE_CGDFG: true
139-
uses: julia-actions/julia-runtest@latest
140-
141-
- name: Process Coverage
142-
uses: julia-actions/julia-processcoverage@v1
143-
144-
- name: Code Coverage
145-
uses: codecov/codecov-action@v1
146-
with:
147-
file: lcov.info
126+
- name: Julia Build Pkg
127+
uses: julia-actions/julia-buildpkg@latest
128+
129+
- name: Git Test Credentials
130+
run: |
131+
git config --global user.name Tester
132+
git config --global user.email [email protected]
133+
134+
- name: Run tests
135+
env:
136+
IIF_TEST: true
137+
DO_CGDFG_TESTS: true
138+
DFG_USE_CGDFG: true
139+
uses: julia-actions/julia-runtest@latest
140+
141+
- name: Process Coverage
142+
uses: julia-actions/julia-processcoverage@v1
143+
144+
- name: Code Coverage
145+
uses: codecov/codecov-action@v1
146+
with:
147+
file: lcov.info
148148

149149
docs:
150150
needs: test

0 commit comments

Comments
 (0)