From 9afb3d558ddd736c19643c2de95a6af6789f3753 Mon Sep 17 00:00:00 2001 From: Guillaume Binet Date: Tue, 21 Jan 2025 11:29:43 -0600 Subject: [PATCH] remove also in the CI/CD. --- .github/workflows/general.yml | 4 ++-- .github/workflows/weekly.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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"