From b58904923ad35186447373b018b50ef2d331e049 Mon Sep 17 00:00:00 2001 From: haixuanTao Date: Wed, 10 Apr 2024 14:38:57 +0200 Subject: [PATCH] deactivate env before running CI/CD --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c6bd86540..d092c5558 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -143,10 +143,13 @@ jobs: run: cargo run --example python-dataflow - uses: conda-incubator/setup-miniconda@v2 with: - auto-activate-base: false + auto-activate-base: true + activate-environment: "" - name: "Python Operator Dataflow example" shell: bash -l {0} - run: cargo run --example python-operator-dataflow + run: | + conda deactivate + cargo run --example python-operator-dataflow # ROS2 bridge examples ros2-bridge-examples: