Skip to content

Commit

Permalink
Add --explicit argument to conda list to be able to clone used en…
Browse files Browse the repository at this point in the history
…vironement
  • Loading branch information
xela-95 committed May 13, 2024
1 parent 88fc33d commit c93dcf3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/conda-forge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,30 +67,30 @@ jobs:
- name: Print used environment
shell: bash -l {0}
run: |
micromamba list
conda list --explicit
env
- name: Configure
shell: bash -l {0}
run: |
mkdir -p build
cd build
cd build
cmake -GNinja -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
-DBUILD_TESTING:BOOL=ON ..
- name: Build
shell: bash -l {0}
run: |
cd build
cmake --build . --config ${{ matrix.build_type }}
cmake --build . --config ${{ matrix.build_type }}
- name: Test_ubuntu
if: contains(matrix.os, 'ubuntu')
shell: bash -l {0}
run: |
cd build
ctest -E "^LaserTest|^CameraTest|^ImuTest" --repeat until-pass:5 --output-on-failure -C ${{ matrix.build_type }} .
ctest -E "^LaserTest|^CameraTest|^ImuTest" --repeat until-pass:5 --output-on-failure -C ${{ matrix.build_type }} .
- name: Test_macos
if: contains(matrix.os, 'macos')
shell: bash -l {0}
Expand Down

0 comments on commit c93dcf3

Please sign in to comment.