@@ -73,12 +73,12 @@ jobs:
73
73
74
74
test-cfg :
75
75
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 }}
77
77
runs-on : ${{ matrix.os }}
78
78
env :
79
79
JULIA_PKG_SERVER : " "
80
80
strategy :
81
- fail-fast : true
81
+ fail-fast : false
82
82
matrix :
83
83
version :
84
84
- ' 1.6'
@@ -87,64 +87,64 @@ jobs:
87
87
arch :
88
88
- x64
89
89
steps :
90
- - name : Checkout
91
- uses : actions/checkout@v2
90
+ - name : Checkout
91
+ uses : actions/checkout@v2
92
92
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 }}
98
98
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/
113
113
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 }}-
125
125
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
148
148
149
149
docs :
150
150
needs : test
0 commit comments