mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
Try to fix linux github worker build
The following packages have unmet dependencies: mariadb-server : Depends: mariadb-server-10.3 (>= 1:10.3.34-0ubuntu0.20.04.1) but it is not going to be installed E: Unable to correct problems, you have held broken packages.
This commit is contained in:
parent
a5db83f292
commit
ed5cc78771
3
.github/workflows/build.yaml
vendored
3
.github/workflows/build.yaml
vendored
|
@ -57,12 +57,13 @@ jobs:
|
|||
if: contains(matrix.os, 'ubuntu')
|
||||
run: |
|
||||
sudo apt-get update -y
|
||||
sudo apt-get upgrade -y
|
||||
sudo apt-get install pkg-config cmake ninja-build libfreetype6-dev libnotify-dev libsdl2-dev libsqlite3-dev libvulkan-dev glslang-tools spirv-tools libavcodec-dev libavformat-dev libavutil-dev libswresample-dev libswscale-dev libx264-dev -y
|
||||
|
||||
- name: Prepare Linux (fancy)
|
||||
if: contains(matrix.os, 'ubuntu') && matrix.fancy
|
||||
run: |
|
||||
sudo apt-get install libmariadbclient-dev libwebsockets-dev mariadb-server -y
|
||||
sudo apt-get install libmariadbclient-dev libwebsockets-dev mariadb-server-10.3 -y
|
||||
sudo rm -rf /var/lib/mysql/
|
||||
sudo mysql_install_db --user=mysql --datadir=/var/lib/mysql/
|
||||
cd /usr; sudo /usr/bin/mysqld_safe --datadir='/var/lib/mysql/' --no-watch
|
||||
|
|
Loading…
Reference in a new issue