Skip to content

Instantly share code, notes, and snippets.

@j-rivero
Created February 2, 2022 14:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save j-rivero/cbec73004b208344b8f0cc03c3eec3e2 to your computer and use it in GitHub Desktop.
Save j-rivero/cbec73004b208344b8f0cc03c3eec3e2 to your computer and use it in GitHub Desktop.
i386 dart test hangs
FROM i386/debian:unstable-20220125-slim
ENV DEBIAN_FRONTEND noninteractive
RUN echo "deb-src http://deb.debian.org/debian unstable main" >> /etc/apt/sources.list
RUN apt-get update && \
apt-get install -y \
locales locales-all \
sudo curl gnupg vim build-essential cmake pkg-config \
locales wget git-buildpackage debhelper devscripts \
apt-cacher-ng auto-apt-proxy bash-completion quilt
RUN apt-get build-dep -y dart
ENV LC_ALL en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US.UTF-8
RUN localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8
RUN locale-gen en_US.UTF-8
RUN cd /tmp && apt-get source dart
RUN cd /tmp/dart-* && quilt push -a || true
RUN cd /tmp/dart-* && mkdir build && cd build && cmake .. && make -j10 tests
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment