/ environment_ci.yml
environment_ci.yml
 1  #
 2  # This is the reduced environment_ci.yml used for automated test/builds
 3  # There is a primary conda environment.yml for development
 4  # Do NOT FORGET to update both when making changes to this file
 5  #
 6  channels:
 7    - sofar_fw
 8    - conda-forge
 9    - memfault
10    - defaults
11  dependencies:
12    # Don't forget to update compiler version check when updating compiler here!
13    # Change COMPILER_VERSION near top of src/CMakeLists.txt
14    - arm-none-eabi-gcc=13.2
15    - clang-tools=18.1
16    - cmake=3.29
17    - cppcheck
18    - gcovr
19    - make=4.3
20    - pre_commit
21    - pyserial
22    - python=3.10
23    - pip
24    - pip:
25        - cbor2
26        - click
27        - cryptography>=42.0
28        - gitpython
29        - intelhex
30        - memfault-cli==1.0
31        - pytest
32        - python-dotenv
33