mirror of https://github.com/FFmpeg/FFmpeg.git
Compare commits
2 Commits
f5eb11a71d
...
d479a4926a
| Author | SHA1 | Date |
|---|---|---|
|
|
d479a4926a | |
|
|
4bdc932ec9 |
|
|
@ -9,11 +9,16 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
runner: [linux-amd64,linux-aarch64]
|
||||
runner: [linux-aarch64]
|
||||
shared: ['false']
|
||||
bits: ['64']
|
||||
include:
|
||||
- runner: linux-amd64
|
||||
shared: 'false'
|
||||
bits: '32'
|
||||
- runner: linux-amd64
|
||||
shared: 'true'
|
||||
bits: '64'
|
||||
runs-on: ${{ matrix.runner }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
|
|
@ -22,6 +27,7 @@ jobs:
|
|||
run: |
|
||||
./configure --enable-gpl --enable-nonfree --enable-memory-poisoning --assert-level=2 \
|
||||
$([ "${{ matrix.bits }}" != "32" ] || echo --arch=x86_32 --extra-cflags=-m32 --extra-cxxflags=-m32 --extra-ldflags=-m32) \
|
||||
$([ "${{ matrix.shared }}" != "true" ] || echo --enable-shared --disable-static) \
|
||||
|| CFGRES=$? && CFGRES=$?
|
||||
cat ffbuild/config.log
|
||||
exit $CFGRES
|
||||
|
|
@ -47,7 +53,7 @@ jobs:
|
|||
path: fate-suite
|
||||
key: fate-suite-${{ steps.fate.outputs.hash }}
|
||||
- name: Run Fate
|
||||
run: make fate fate-build SAMPLES=$PWD/fate-suite -j$(nproc)
|
||||
run: LD_LIBRARY_PATH="$(printf "%s:" "$PWD"/lib*)$PWD" make fate fate-build SAMPLES=$PWD/fate-suite -j$(nproc)
|
||||
compile_only:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
|
|
|
|||
|
|
@ -376,6 +376,8 @@ FF_ENABLE_DEPRECATION_WARNINGS
|
|||
dst->bits_per_raw_sample = src->bits_per_raw_sample;
|
||||
dst->color_primaries = src->color_primaries;
|
||||
|
||||
dst->alpha_mode = src->alpha_mode;
|
||||
|
||||
dst->color_trc = src->color_trc;
|
||||
dst->colorspace = src->colorspace;
|
||||
dst->color_range = src->color_range;
|
||||
|
|
|
|||
Loading…
Reference in New Issue