Setting up tests for drip-feeding data into decoder #89 #139
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Ios Static | |
env: | |
project: PopH264 | |
on: | |
pull_request: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
- '*Test*' | |
jobs: | |
Build: | |
name: Ios Static Library | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: "recursive" | |
- name: Build Ios Static | |
id: BuildIosStatic | |
uses: NewChromantics/[email protected] | |
with: | |
BuildScheme: ${{ env.project }}_IosStatic | |
project: ${{ env.project }} | |
Destination: "generic/platform=iOS" | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: ${{ steps.BuildIosStatic.outputs.UPLOAD_NAME }} | |
path: ${{ steps.BuildIosStatic.outputs.UPLOAD_DIR }} |