Try installing mysql and postgres 12.

This commit is contained in:
Dessalines 2024-05-16 12:27:53 -04:00
parent b05a53e664
commit bc227d1672
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ variables:
- apt update && apt install -y lsb-release build-essential
- sh -c 'echo "deb https://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
- wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -
- apt update && apt install -y postgresql-client-16 libsqlite3-dev libpq-dev mysql-server
- apt update && apt install -y postgresql-client-16 libsqlite3-dev libpq-dev default-mysql-client
- cargo binstall -y diesel_cli
- export PATH="$CARGO_HOME/bin:$PATH"