From 1ea21620122e19e01069d2bb1064060a2149ca0f Mon Sep 17 00:00:00 2001 From: Benjamin Bouvier Date: Mon, 18 Aug 2025 17:18:45 +0200 Subject: [PATCH] chore(ci): add a search feature to try out the experimental-search branch in CI --- .github/workflows/ci.yml | 1 + xtask/src/ci.rs | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8d300b158..5e7296084 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,6 +39,7 @@ jobs: - markdown - socks - sso-login + - search steps: - name: Checkout diff --git a/xtask/src/ci.rs b/xtask/src/ci.rs index c2326b452..aad3b4edc 100644 --- a/xtask/src/ci.rs +++ b/xtask/src/ci.rs @@ -105,6 +105,7 @@ enum FeatureSet { Markdown, Socks, SsoLogin, + Search, } #[derive(Subcommand, PartialEq, Eq, PartialOrd, Ord)] @@ -271,6 +272,7 @@ fn run_feature_tests(cmd: Option) -> Result<()> { (FeatureSet::Markdown, "--features markdown,testing"), (FeatureSet::Socks, "--features socks,testing"), (FeatureSet::SsoLogin, "--features sso-login,testing"), + (FeatureSet::Search, "--features experimental-search"), ]); let sh = sh();