From 96e3d9f125420c561a964e15b910d2875b55625e Mon Sep 17 00:00:00 2001 From: Michael Fabian 'Xaymar' Dirks Date: Sun, 23 May 2021 14:19:46 +0200 Subject: [PATCH] ci: Don't enable non-free CUDA --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fa9d63d2c1..98d93a37d3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -132,10 +132,10 @@ jobs: elif (( "${{ steps.data.outputs.version_major }}" >= 3 )); then if (( "${{ steps.data.outputs.version_minor }}" >= 2 )); then # 3.2+ has cuda, cuvid, nvenc - echo "::set-output name=flags::--enable-cuda --enable-cuvid --enable-nvenc" + echo "::set-output name=flags::--enable-cuvid --enable-nvenc" elif (( "${{ steps.data.outputs.version_minor }}" >= 1 )); then # 3.1 has cuda, nvenc - echo "::set-output name=flags::--enable-cuda --enable-nvenc" + echo "::set-output name=flags::--enable-nvenc" elif (( "${{ steps.data.outputs.version_minor }}" >= 0 )); then # 3.0 has nvenc echo "::set-output name=flags::--enable-nvenc"