30 lines
734 B
YAML
30 lines
734 B
YAML
name: Test Full Build
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
env:
|
|
DOCKER_BUILDKIT: 1
|
|
|
|
jobs:
|
|
build:
|
|
name: Build ffmpeg
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
target: [win64]
|
|
variant: [gpl,lgpl,gpl 4.4,lgpl 4.4,gpl-shared,lgpl-shared,gpl-shared 4.4,lgpl-shared 4.4]
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Build Image
|
|
run: ./makeimage.sh ${{ matrix.target }} ${{ matrix.variant }}
|
|
- name: Build ffmpeg
|
|
run: ./build.sh ${{ matrix.target }} ${{ matrix.variant }}
|
|
- name: Upload artifacts
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: ffmpeg
|
|
path: artifacts/*
|