init
continuous-integration/drone/tag Build is passing
Details
continuous-integration/drone/tag Build is passing
Details
This commit is contained in:
commit
a8326b6ff2
|
@ -0,0 +1,60 @@
|
|||
kind: pipeline
|
||||
type: docker
|
||||
name: fallbackswitch
|
||||
|
||||
clone: { disable: yes }
|
||||
trigger: { event: tag }
|
||||
|
||||
environment:
|
||||
CUSTOM_REPO: https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
|
||||
|
||||
steps:
|
||||
|
||||
- name: clone
|
||||
image: alpine/git
|
||||
commands:
|
||||
- echo cloning $CUSTOM_REPO
|
||||
- git clone $CUSTOM_REPO .
|
||||
- git checkout $DRONE_TAG
|
||||
|
||||
- name: build
|
||||
image: debian:11-slim
|
||||
commands:
|
||||
|
||||
- apt-get update
|
||||
- >-
|
||||
apt-get install -y --no-install-recommends
|
||||
autoconf
|
||||
build-essential
|
||||
ca-certificates
|
||||
curl
|
||||
git
|
||||
gstreamer1.0-gl
|
||||
gstreamer1.0-plugins-base
|
||||
gstreamer1.0-tools
|
||||
libglib2.0-dev
|
||||
libgstreamer1.0-dev
|
||||
libgstreamer-plugins-base1.0-dev
|
||||
- curl https://sh.rustup.rs -sSf | sh -s -- --profile minimal -y
|
||||
|
||||
- cd utils/fallbackswitch
|
||||
- . $HOME/.cargo/env && cargo build --release
|
||||
|
||||
- cd ../..
|
||||
- strip target/release/libgstfallbackswitch.so
|
||||
|
||||
|
||||
- name: release
|
||||
image: plugins/gitea-release
|
||||
settings:
|
||||
api_key:
|
||||
from_secret: api_key
|
||||
base_url: https://git.luj0ga.de
|
||||
files:
|
||||
- target/release/libgstfallbackswitch.so
|
||||
checksum:
|
||||
- md5
|
||||
- sha1
|
||||
- sha256
|
||||
title: ${DRONE_TAG}
|
||||
|
|
@ -0,0 +1,26 @@
|
|||
FROM debian:11-slim
|
||||
|
||||
RUN apt update
|
||||
RUN apt install -y --no-install-recommends \
|
||||
autoconf \
|
||||
build-essential \
|
||||
ca-certificates \
|
||||
curl \
|
||||
git \
|
||||
gstreamer1.0-gl \
|
||||
gstreamer1.0-plugins-base \
|
||||
gstreamer1.0-tools \
|
||||
libglib2.0-dev \
|
||||
libgstreamer1.0-dev \
|
||||
libgstreamer-plugins-base1.0-dev
|
||||
|
||||
RUN curl https://sh.rustup.rs -sSf | sh -s -- --profile minimal -y
|
||||
|
||||
WORKDIR /opt
|
||||
RUN git clone https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
|
||||
|
||||
WORKDIR /opt/gst-plugins-rs/utils/fallbackswitch
|
||||
RUN . $HOME/.cargo/env && cargo build --release
|
||||
|
||||
WORKDIR /opt/gst-plugins-rs
|
||||
RUN find target/release
|
Loading…
Reference in New Issue