v1.9.1 - Avf now outputs HardwareAccellerated meta #599
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 Linux | |
on: | |
pull_request: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
- '*Test*' | |
jobs: | |
Build: | |
env: | |
project: PopH264 | |
runs-on: ${{ matrix.config.os }} | |
strategy: | |
matrix: | |
config: | |
- os: ubuntu-latest | |
type: linux | |
arch: x86_64 | |
# nvidia temporarily disabled... compiler out of date? | |
#- os: Nvidia | |
# type: linux | |
# arch: arm64 | |
#- os: ubuntu-18.04 | |
# type: linux | |
# arch: armv8 | |
# flag: pi | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: "recursive" | |
- name: Linux | |
uses: NewChromantics/PopAction_BuildLinux@v1 | |
with: | |
os: ${{ matrix.config.os }} | |
project: ${{ env.project }} | |
arch: ${{ matrix.config.arch }} | |
flag: ${{ matrix.config.flag }} | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
# tsdk: these env vars are set in each of the actions | |
name: ${{ env.UPLOAD_NAME }} | |
path: ${{ env.UPLOAD_DIR }} |