Lines Matching full:run
20 RUN apt-get update && apt-get install -y \
28 RUN pip3 install meson==${MESON_VERSION} tomli
29 RUN mkdir /build
31 RUN mkdir -p $TARGET
32 RUN <<EOF
51 RUN mkdir -p /zlib
52 RUN curl -Ls https://zlib.net/zlib-$ZLIB_VERSION.tar.xz | \
55 RUN emconfigure ./configure --prefix=$TARGET --static
56 RUN emmake make install -j$(nproc)
60 RUN mkdir -p /libffi
61 RUN git clone https://github.com/libffi/libffi /libffi
63 RUN git checkout $FFI_VERSION
64 RUN autoreconf -fiv
65 RUN emconfigure ./configure --host=wasm32-unknown-linux \
70 RUN emmake make install SUBDIRS='include' -j$(nproc)
74 RUN mkdir /pixman/
75 RUN git clone https://gitlab.freedesktop.org/pixman/pixman /pixman/
77 RUN git checkout pixman-$PIXMAN_VERSION
78 RUN <<EOF
88 RUN meson setup _build --prefix=$TARGET --cross-file=/cross.meson \
91 RUN meson install -C _build
96 RUN mkdir -p /stub
98 RUN <<EOF
109 RUN emcc ${CFLAGS} -c res_query.c -fPIC -o libresolv.o
110 RUN ar rcs libresolv.a libresolv.o
111 RUN mkdir -p $TARGET/lib/
112 RUN cp libresolv.a $TARGET/lib/
114 RUN mkdir -p /glib
115 RUN curl -Lks https://download.gnome.org/sources/glib/${GLIB_MINOR_VERSION}/glib-$GLIB_VERSION.tar.…
122 RUN <<EOF
133 RUN meson setup _build --prefix=$TARGET --cross-file=/cross.meson \
139 RUN sed -i -E "/#define HAVE_POSIX_SPAWN 1/d" ./_build/config.h
140 RUN sed -i -E "/#define HAVE_PTHREAD_GETNAME_NP 1/d" ./_build/config.h
141 RUN meson install -C _build