mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-10 07:27:44 +08:00
77dbc79115
``` Compiler: gcc libsrtp version: 2.x SSL/crypto library: OpenSSL DTLS set-timeout: not available Mutex implementation: GMutex (native futex on Linux) DataChannels support: no Recordings post-processor: no TURN REST API client: no Doxygen documentation: no Transports: REST (HTTP/HTTPS): no WebSockets: no RabbitMQ: no MQTT: no Unix Sockets: yes Nanomsg: no Plugins: Echo Test: yes Streaming: yes Video Call: yes SIP Gateway: no NoSIP (RTP Bridge): yes Audio Bridge: no Video Room: yes Voice Mail: no Record&Play: yes Text Room: yes Lua Interpreter: no Duktape Interpreter: no Event handlers: Sample event handler: no WebSocket ev. handler: no RabbitMQ event handler:no MQTT event handler: no Nanomsg event handler: no GELF event handler: yes External loggers: JSON file logger: no JavaScript modules: no ``` Signed-off-by: Zoey <zoey@z0ey.de>
56 lines
1.9 KiB
YAML
56 lines
1.9 KiB
YAML
name: talk-update
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '00 12 * * *'
|
|
|
|
jobs:
|
|
talk-update:
|
|
name: update talk
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Run talk-update
|
|
run: |
|
|
# Spreed
|
|
spreed_version="$(
|
|
git ls-remote https://github.com/nextcloud/spreed v*.*.* \
|
|
| cut -d/ -f3 \
|
|
| sort -V \
|
|
| grep -E "^v[0-9]+\.[0-9]+\.[0-9]+$" \
|
|
| tail -1
|
|
)"
|
|
sed -i "s|^ENV RECORDING_VERSION.*$|ENV RECORDING_VERSION $spreed_version|" ./Containers/talk-recording/Dockerfile
|
|
curl -L "https://raw.githubusercontent.com/nextcloud/spreed/$spreed_version/recording/server.conf.in" -o Containers/talk-recording/recording.conf
|
|
|
|
# Signaling
|
|
signaling_version="$(
|
|
git ls-remote https://github.com/strukturag/nextcloud-spreed-signaling v*.*.* \
|
|
| cut -d/ -f3 \
|
|
| sort -V \
|
|
| grep -E "^v[0-9]+\.[0-9]+\.[0-9]+$" \
|
|
| tail -1
|
|
)"
|
|
curl -L "https://raw.githubusercontent.com/strukturag/nextcloud-spreed-signaling/$signaling_version/server.conf.in" -o Containers/talk/server.conf.in
|
|
|
|
# Janus
|
|
janus_version="$(
|
|
git ls-remote https://github.com/meetecho/janus-gateway v0.*.* \
|
|
| cut -d/ -f3 \
|
|
| sort -V \
|
|
| grep -E "^v[0-9]+\.[0-9]+\.[0-9]+$" \
|
|
| tail -1
|
|
)"
|
|
sed -i "s|^ARG JANUS_VERSION=.*$|ARG JANUS_VERSION=$janus_version|" ./Containers/talk/Dockerfile
|
|
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@v5
|
|
with:
|
|
commit-message: talk-update automated change
|
|
signoff: true
|
|
title: talk update
|
|
body: Automated talk container update
|
|
labels: dependencies, 3. to review
|
|
milestone: next
|
|
branch: talk-container-update
|