1
0
mirror of https://github.com/cldellow/sqlite-parquet-vtable.git synced 2025-04-03 09:39:47 +00:00

Move builds to Ubuntu 18.04, as it seems to be most compatible

This commit is contained in:
Addie Morrison 2019-12-08 19:14:29 -06:00
parent ca4d5f71d6
commit 1a752aa31f
2 changed files with 4 additions and 13 deletions

View File

@ -1,17 +1,7 @@
#FROM centos:7
#RUN yum install -y epel-release
#RUN yum install -y sqlite-devel
#RUN yum install -y gcc gcc-c++ meson
#COPY ci/arrow-centos.repo /etc/yum.repos.d/Apache-Arrow.repo
#RUN yum install -y parquet-devel
FROM ubuntu:16.04
FROM ubuntu:18.04
RUN apt-get update && apt-get install -y apt-transport-https curl gnupg lsb-release pkg-config libsqlite3-dev libicu-dev gcc g++ meson
COPY ci/arrow-ubuntu16.04.list /etc/apt/sources.list.d/apache-arrow.list
RUN curl https://dist.apache.org/repos/dist/dev/arrow/KEYS | apt-key add - && apt-get update && apt-get install -y libparquet-dev
#https://apache.bintray.com/arrow/centos/7/x86_64/Packages/parquet-devel-0.14.1-1.el7.x86_64.rpm https://apache.bintray.com/arrow/centos/7/x86_64/Packages/parquet-libs-0.14.1-1.el7.x86_64.rpm https://apache.bintray.com/arrow/centos/7/x86_64/Packages/arrow-libs-0.14.1-1.el7.x86_64.rpm https://apache.bintray.com/arrow/centos/7/x86_64/Packages/arrow-glib-libs-0.14.1-1.el7.x86_64.rpm https://apache.bintray.com/arrow/centos/7/x86_64/Packages/arrow-glib-devel-0.14.1-1.el7.x86_64.rpm https://apache.bintray.com/arrow/centos/7/x86_64/Packages/arrow-devel-0.14.1-1.el7.x86_64.rpm
#COPY ci/arrow-centos.repo //yum.repos.d/Apache-Arrow.repo
#RUN yum install -y epel-release && yum install -y --enablerepo=epel parquet-devel
COPY ci/arrow-ubuntu18.04.list /etc/apt/sources.list.d/apache-arrow.list
RUN curl -L -o /usr/share/keyrings/apache-arrow-keyring.gpg https://dl.bintray.com/apache/arrow/$(lsb_release --id --short | tr 'A-Z' 'a-z')/apache-arrow-keyring.gpg && apt-get update && apt-get install -y libparquet-dev
WORKDIR /src/
VOLUME /src
CMD mkdir builddir && meson builddir && cd builddir && ninja

View File

@ -0,0 +1 @@
deb [arch=amd64 signed-by=/usr/share/keyrings/apache-arrow-keyring.gpg] https://dl.bintray.com/apache/arrow/ubuntu/ bionic main deb-src [signed-by=/usr/share/keyrings/apache-arrow-keyring.gpg] https://dl.bintray.com/apache/arrow/ubuntu/ bionic main