Initial commit
This commit is contained in:
commit
67e18a6a55
2 changed files with 116 additions and 0 deletions
66
.forgejo/workflows/generate-webrtc.yml
Normal file
66
.forgejo/workflows/generate-webrtc.yml
Normal file
|
@ -0,0 +1,66 @@
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
ref_name:
|
||||||
|
description: 'webrtc version'
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-tarball:
|
||||||
|
name: Build tarball
|
||||||
|
runs-on: x86_64
|
||||||
|
container:
|
||||||
|
image: alpine:3.19
|
||||||
|
env:
|
||||||
|
VPYTHON_BYPASS: manually managed python not supported by chrome operations
|
||||||
|
ZSTD_LIMIT: 0
|
||||||
|
DEPOT_TOOLS_VER: ae3745656b1111c995e41ec70eaa4397eaea7951
|
||||||
|
steps:
|
||||||
|
- name: Environment setup
|
||||||
|
run: apk add nodejs git zstd tar sed bash py3-httplib2 wget curl
|
||||||
|
- name: Getting depot_tools
|
||||||
|
run: |
|
||||||
|
git clone --depth 1 https://chromium.googlesource.com/chromium/tools/depot_tools.git ./
|
||||||
|
git fetch --depth 1 origin $DEPOT_TOOLS_VER
|
||||||
|
git checkout $DEPOT_TOOLS_VER
|
||||||
|
- name: Fetching webrtc
|
||||||
|
run: |
|
||||||
|
if test $GITHUB_REF_NAME == "ci" ; then
|
||||||
|
CI_REF_NAME=${{ inputs.ref_name }}
|
||||||
|
else
|
||||||
|
CI_REF_NAME=$GITHUB_REF_NAME
|
||||||
|
fi
|
||||||
|
curl --silent https://raw.githubusercontent.com/signalapp/Signal-Desktop/$CI_REF_NAME/package-lock.json | grep "@signalapp/ringrtc\": \"" | awk '{print $2}' | tr -d ',' | tr -d '"' > ringrtcver
|
||||||
|
read -d $'\x04' _ringrtcver < ringrtcver
|
||||||
|
curl --silent https://raw.githubusercontent.com/signalapp/ringrtc/v$_ringrtcver/config/version.properties | awk -F '=' '{if($1 == "webrtc.version"){print $2}}' > webrtcver
|
||||||
|
read -d $'\x04' _webrtcver < webrtcver
|
||||||
|
echo "solutions = [{'name': 'src','url': 'https://github.com/signalapp/webrtc.git@$_webrtcver',}]" > .gclient
|
||||||
|
echo "target_cpu = ['x64', 'arm64']" >> .gclient
|
||||||
|
echo "target_cpu_only = True" >> .gclient
|
||||||
|
./gclient sync --no-history --nohooks
|
||||||
|
- name: Preparing source
|
||||||
|
run: |
|
||||||
|
read -d $'\x04' _webrtcver < webrtcver
|
||||||
|
python3 'src/build/landmines.py' --landmine-scripts 'src/tools_webrtc/get_landmines.py' --src-dir 'src'
|
||||||
|
python3 'src/build/util/lastchange.py' -o 'src/build/util/LASTCHANGE'
|
||||||
|
scanelf -RA -F "%F" src > elf.list
|
||||||
|
while read file; do rm -f "$file"; done < elf.list
|
||||||
|
read -d $'\x04' _webrtcver < webrtcver
|
||||||
|
mv src webrtc-$_webrtcver
|
||||||
|
- name: Packaging source
|
||||||
|
run: |
|
||||||
|
read -d $'\x04' _webrtcver < webrtcver
|
||||||
|
tar -cf webrtc-$_webrtcver.tar --exclude="ChangeLog*" --exclude="testdata/" --exclude="test_data/" --exclude="android_rust_toolchain/toolchain/" --exclude="base/" --exclude-backups --exclude-caches-all --exclude-vcs webrtc-$_webrtcver
|
||||||
|
zstd --auto-threads=logical --ultra --long -22 -T"$ZSTD_LIMIT" -vv webrtc-$_webrtcver.tar -o webrtc-$_webrtcver.tar.zst
|
||||||
|
- name: Computing checksums
|
||||||
|
run: |
|
||||||
|
read -d $'\x04' _webrtcver < webrtcver
|
||||||
|
sha512sum webrtc-$_webrtcver.tar.zst > webrtc-$_webrtcver.tar.zst.sha512sum
|
||||||
|
sha256sum webrtc-$_webrtcver.tar.zst > webrtc-$_webrtcver.tar.zst.sha256sum
|
||||||
|
- name: Package deployment
|
||||||
|
run: |
|
||||||
|
read -d $'\x04' _webrtcver < webrtcver
|
||||||
|
curl --user ${{ vars.CODE_FORGEJO_USER }}:${{ secrets.CODE_FORGEJO_TOKEN }} --upload-file ./tarball/webrtc-*.tar.zst ${{ github.server_url }}/api/packages/mirrors/generic/webrtc/$_webrtcver/webrtc-$_webrtcver.tar.zst
|
||||||
|
curl --user ${{ vars.CODE_FORGEJO_USER }}:${{ secrets.CODE_FORGEJO_TOKEN }} --upload-file ./tarball/webrtc-*.tar.zst.sha512sum ${{ github.server_url }}/api/packages/mirrors/generic/webrtc/$_webrtcver/webrtc-$_webrtcver.tar.zst.sha512sum
|
||||||
|
curl --user ${{ vars.CODE_FORGEJO_USER }}:${{ secrets.CODE_FORGEJO_TOKEN }} --upload-file ./tarball/webrtc-*.tar.zst.sha256sum ${{ github.server_url }}/api/packages/mirrors/generic/webrtc/$_webrtcver/webrtc-$_webrtcver.tar.zst.sha256sum
|
50
.forgejo/workflows/mirror-repository.yml
Normal file
50
.forgejo/workflows/mirror-repository.yml
Normal file
|
@ -0,0 +1,50 @@
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
schedule:
|
||||||
|
- cron: '@hourly'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
mirror:
|
||||||
|
name: Pull from upstream
|
||||||
|
runs-on: x86_64
|
||||||
|
container:
|
||||||
|
image: alpine:latest
|
||||||
|
env:
|
||||||
|
upstream: https://github.com/signalapp/Signal-Desktop
|
||||||
|
tags: 'v7.23*'
|
||||||
|
steps:
|
||||||
|
- name: Environment setup
|
||||||
|
run: apk add grep git sed coreutils bash nodejs
|
||||||
|
- name: Fetch destination
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch_depth: 1
|
||||||
|
ref: ci
|
||||||
|
token: ${{ secrets.CODE_FORGEJO_TOKEN }}
|
||||||
|
- name: Missing tag detecting
|
||||||
|
run: |
|
||||||
|
git ls-remote $upstream "refs/tags/$tags" | grep -v '{' | sed 's|.*/||' > upstream_tags
|
||||||
|
git ls-remote ${{ github.server_url}}/${{ github.repository }} "refs/tags/$tags" | grep -v '{' | sed 's|.*/||' > destination_tags
|
||||||
|
cat upstream_tags destination_tags | tr ' ' '\n' | sort | uniq -u > missing_tags
|
||||||
|
echo "Missing tags:"
|
||||||
|
cat missing_tags
|
||||||
|
- name: Missing tag fetch
|
||||||
|
run: |
|
||||||
|
git remote add upstream $upstream
|
||||||
|
while read tag; do
|
||||||
|
git fetch upstream tag $tag --no-tags
|
||||||
|
done < missing_tags
|
||||||
|
- name: Packaging workflow injection
|
||||||
|
run: |
|
||||||
|
while read tag; do
|
||||||
|
git checkout $tag
|
||||||
|
git tag -d $tag
|
||||||
|
git checkout ci -- ./.forgejo
|
||||||
|
git config user.name "forgejo-actions[bot]"
|
||||||
|
git config user.email "dev@ayakael.net"
|
||||||
|
git commit -m 'Inject custom workflow'
|
||||||
|
git tag -a $tag -m $tag
|
||||||
|
done < missing_tags
|
||||||
|
- name: Push to destination
|
||||||
|
run: git push --force origin refs/tags/*:refs/tags/* --tags
|
Loading…
Reference in a new issue