mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 19:21:06 +00:00
091946a478
Main differences with previous setup are: - No manifest creation - gst-indent is executed only when the bot is assigned (instead of the manifest task) - Cerbero jobs are triggered in the cerbero repo - Remove cerbero and android related files as they now are in cerbero itself. - Update `container.ps1` to the new file layout Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/891>
12 lines
283 B
Docker
12 lines
283 B
Docker
FROM registry.fedoraproject.org/fedora:31
|
|
|
|
ENV RUSTUP_HOME=/usr/local/rustup \
|
|
CARGO_HOME=/usr/local/cargo \
|
|
PATH=/usr/local/cargo/bin:$PATH
|
|
|
|
ARG DEFAULT_BRANCH="main"
|
|
|
|
COPY prepare.sh cleanup.sh /root/
|
|
|
|
RUN /usr/bin/sh /root/prepare.sh && \
|
|
/usr/bin/sh /root/cleanup.sh
|