diff --git a/.github/workflows/general.yml b/.github/workflows/general.yml index 5a35a3318..67ee8849c 100644 --- a/.github/workflows/general.yml +++ b/.github/workflows/general.yml @@ -81,7 +81,7 @@ jobs: - name: Set features (Linux / MacOS) if: runner.os != 'Windows' - run: echo "FEATURES_FLAG=$([[ '${{ matrix.mode }}' == 'cuda-release' ]] && echo '--all-features' || echo '--features macro_debug,mock,iyes_perf_ui,image,kornia')" >> $GITHUB_ENV + run: echo "FEATURES_FLAG=$([[ '${{ matrix.mode }}' == 'cuda-release' ]] && echo '--all-features' || echo '--features macro_debug,mock,image,kornia')" >> $GITHUB_ENV - name: Set features (Windows) if: runner.os == 'Windows' @@ -89,7 +89,7 @@ jobs: $features = if ($env:matrix_mode -eq 'cuda-release') { '--all-features' } else { - '--features macro_debug,mock,iyes_perf_ui,image,kornia' + '--features macro_debug,mock,image,kornia' } Add-Content -Path $env:GITHUB_ENV -Value "FEATURES_FLAG=$features" diff --git a/.github/workflows/weekly.yml b/.github/workflows/weekly.yml index 4f540d590..fae510f51 100644 --- a/.github/workflows/weekly.yml +++ b/.github/workflows/weekly.yml @@ -95,7 +95,7 @@ jobs: - name: Set features (Linux / MacOS) if: runner.os != 'Windows' - run: echo "FEATURES_FLAG=$([[ '${{ matrix.mode }}' == 'cuda-release' ]] && echo '--all-features' || echo '--features macro_debug,mock,iyes_perf_ui,image,kornia')" >> $GITHUB_ENV + run: echo "FEATURES_FLAG=$([[ '${{ matrix.mode }}' == 'cuda-release' ]] && echo '--all-features' || echo '--features macro_debug,mock,image,kornia')" >> $GITHUB_ENV - name: Set features (Windows) if: runner.os == 'Windows' @@ -103,7 +103,7 @@ jobs: $features = if ($env:matrix_mode -eq 'cuda-release') { '--all-features' } else { - '--features macro_debug,mock,iyes_perf_ui,image,kornia' + '--features macro_debug,mock,image,kornia' } Add-Content -Path $env:GITHUB_ENV -Value "FEATURES_FLAG=$features"