@@ -126,11 +126,11 @@ jobs:
126
126
# Memgraph has to be started manually because systemd is not available on
127
127
# WSL (init process does not exist).
128
128
build_and_test_windows_mingw :
129
- runs-on : windows-2019
129
+ runs-on : windows-2022
130
130
strategy :
131
131
matrix :
132
132
include : [
133
- { msystem: MINGW64, arch: x86_64, mgversion: "1.4 .0" }
133
+ { msystem: MINGW64, arch: x86_64, mgversion: "2.19 .0" }
134
134
]
135
135
defaults :
136
136
run :
@@ -145,13 +145,14 @@ jobs:
145
145
install : git base-devel mingw-w64-${{ matrix.arch }}-toolchain mingw-w64-${{ matrix.arch }}-cmake mingw-w64-${{ matrix.arch }}-openssl
146
146
- uses : Vampire/setup-wsl@v1
147
147
with :
148
- distribution : Ubuntu-18 .04
148
+ distribution : Ubuntu-22 .04
149
149
- name : Download, install and run Memgraph under WSL
150
150
shell : wsl-bash {0} # root shell
151
151
run : |
152
152
mkdir ~/memgraph
153
- curl -L https://download.memgraph.com/memgraph/v${{matrix.mgversion}}/ubuntu-18.04/memgraph_${{matrix.mgversion}}-community-1_amd64.deb --output ~/memgraph/memgraph-community.deb
154
- dpkg -i ~/memgraph/memgraph-community.deb
153
+ # https://download.memgraph.com/memgraph/v2.19.0/ubuntu-24.04/memgraph_2.19.0-1_amd64.deb
154
+ curl -L https://download.memgraph.com/memgraph/v${{matrix.mgversion}}/ubuntu-22.04/memgraph_${{matrix.mgversion}}-1_amd64.deb --output ~/memgraph/memgraph.deb
155
+ dpkg -i ~/memgraph/memgraph.deb
155
156
nohup /usr/lib/memgraph/memgraph --bolt-port 7687 --bolt-cert-file="" --bolt-key-file="" --data-directory="~/memgraph/data" --storage-properties-on-edges=true --storage-snapshot-interval-sec=0 --storage-wal-enabled=false --storage-recover-on-startup=false --storage-snapshot-on-exit=false --telemetry-enabled=false --log-file='' &
156
157
sleep 1 # Wait for Memgraph a bit.
157
158
- name : Build and test mgclient
0 commit comments