13
.github/FUNDING.yml
vendored
Normal file
13
.github/FUNDING.yml
vendored
Normal 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
32
.github/workflows/build.yml
vendored
Normal 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
|
||||
|
||||
Reference in New Issue
Block a user