[Groonga-mysql-commit] mroonga/mroonga at 6cfe32c [master] travis: revert installing libmysqld-dev for MySQL 8

Back to archive index
Kouhei Sutou null+****@clear*****
Mon Nov 26 23:41:27 JST 2018


Kouhei Sutou	2018-11-26 23:41:27 +0900 (Mon, 26 Nov 2018)

  Revision: 6cfe32c6051c7797147fe9ad45b8f25a0dd48f94
  https://github.com/mroonga/mroonga/commit/6cfe32c6051c7797147fe9ad45b8f25a0dd48f94

  Message:
    travis: revert installing libmysqld-dev for MySQL 8
    
    It doesn't exist.

  Modified files:
    tools/travis/install.sh

  Modified: tools/travis/install.sh (+6 -2)
===================================================================
--- tools/travis/install.sh    2018-11-26 23:41:14 +0900 (2ebfefb9)
+++ tools/travis/install.sh    2018-11-26 23:41:27 +0900 (a3541b83)
@@ -116,11 +116,15 @@ else
         sudo apt-get -qq update
         sudo apt-get -qq -y remove --purge mysql-common
         sudo apt-get -qq -y build-dep mysql-server
-        sudo apt-get -y install \
+        sudo apt-get -qq -y install \
              mysql-server \
              libmysqlclient-dev \
-             libmysqld-dev \
              mysql-testsuite
+        case "$MYSQL_VERSION" in
+          mysql-5.*)
+            sudo apt-get -qq -y install libmysqld-dev
+            ;;
+        esac
         apt-get -qq source mysql-server
         ln -s $(find . -maxdepth 1 -type d | sort | tail -1) mysql
       fi
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.osdn.me/mailman/archives/groonga-mysql-commit/attachments/20181126/21a38103/attachment.html>


More information about the Groonga-mysql-commit mailing list
Back to archive index