加入volk 和 wma 后 编译不通过, 先保存代码

This commit is contained in:
xsl
2025-10-18 23:59:21 +08:00
parent 4237213658
commit 234e30bd50
605 changed files with 144276 additions and 15 deletions
+33
View File
@@ -0,0 +1,33 @@
name: update
on:
schedule:
- cron: '0 16 * * *'
workflow_dispatch:
jobs:
update:
if: github.repository == 'zeux/volk'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
- name: update
run: |
python3 generate.py >version.txt
echo "VOLK_VERSION=`cat version.txt`" >> $GITHUB_ENV
rm version.txt
- name: create pr
uses: peter-evans/create-pull-request@v6
with:
branch: update/${{env.VOLK_VERSION}}
delete-branch: true
commit-message: Update to 1.3.${{env.VOLK_VERSION}}
title: Update to 1.3.${{env.VOLK_VERSION}}
author: GitHub <noreply@github.com>
- name: enable pr automerge
run: gh pr merge --merge --auto ${{env.PULL_REQUEST_NUMBER}}
env:
GH_TOKEN: ${{ github.token }}
continue-on-error: true