first commit
Some checks failed
/ buid (push) Has been cancelled

This commit is contained in:
2026-04-16 14:48:09 +07:00
commit 4b968a3347
5625 changed files with 1685474 additions and 0 deletions

13
.github/FUNDING.yml vendored Normal file
View File

@ -0,0 +1,13 @@
# These are supported funding model platforms
github: kingslay # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']

32
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,32 @@
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
buidJoB:
name: buid
runs-on: macos-14
steps:
- uses: actions/checkout@main
with:
submodules: 'true'
- name: Set up Xcode
run: |
sudo xcode-select -s /Applications/Xcode_15.2.app/Contents/Developer
xcode-select -p
xcodebuild -version
- name: Build
run: |
cd Demo
pod install
swift package BuildFFmpeg -h
swift run ffmpeg -h
xcodebuild -workspace Demo.xcworkspace -scheme macOS
xcodebuild -workspace Demo.xcworkspace -scheme iOS -sdk iphonesimulator
# xcodebuild -workspace Demo.xcworkspace -scheme visonOS -sdk XRSimulator
# xcodebuild -workspace Demo.xcworkspace -scheme tvOS -sdk appletvsimulator