mirror of https://github.com/FFmpeg/FFmpeg.git
Compare commits
No commits in common. "d479a4926ac470f2825905c808409eb9dec8441f" and "f5eb11a71d64660543809cbe2aa6c4d6f4aff96c" have entirely different histories.
d479a4926a
...
f5eb11a71d
|
|
@ -9,16 +9,11 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
runner: [linux-aarch64]
|
||||
shared: ['false']
|
||||
runner: [linux-amd64,linux-aarch64]
|
||||
bits: ['64']
|
||||
include:
|
||||
- runner: linux-amd64
|
||||
shared: 'false'
|
||||
bits: '32'
|
||||
- runner: linux-amd64
|
||||
shared: 'true'
|
||||
bits: '64'
|
||||
runs-on: ${{ matrix.runner }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
|
|
@ -27,7 +22,6 @@ 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
|
||||
|
|
@ -53,7 +47,7 @@ jobs:
|
|||
path: fate-suite
|
||||
key: fate-suite-${{ steps.fate.outputs.hash }}
|
||||
- name: Run Fate
|
||||
run: LD_LIBRARY_PATH="$(printf "%s:" "$PWD"/lib*)$PWD" make fate fate-build SAMPLES=$PWD/fate-suite -j$(nproc)
|
||||
run: make fate fate-build SAMPLES=$PWD/fate-suite -j$(nproc)
|
||||
compile_only:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
|
|
|
|||
|
|
@ -376,8 +376,6 @@ 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