File tree 3 files changed +12
-313
lines changed
3 files changed +12
-313
lines changed Original file line number Diff line number Diff line change @@ -20,17 +20,18 @@ jobs:
20
20
path : " **/cpm_modules"
21
21
key : ${{ github.workflow }}-cpm-modules-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }}
22
22
23
- - name : Before Install
23
+ - name : Add conda to system path
24
24
run : |
25
- sudo apt-get install g++-10
26
- sudo update-alternatives --install /usr/ bin/g++ g++ /usr/bin/g++-10 90
25
+ # $CONDA is an environment variable pointing to the root of the miniconda directory
26
+ echo $CONDA/ bin >> $GITHUB_PATH
27
27
28
- - name : Install dependencies
29
- run : sudo apt-get install libboost-dev
28
+ - name : Install dependent software
29
+ run : |
30
+ conda info
31
+ conda env update --file doc-dev.yml --name base
30
32
31
33
- name : Install dependencies
32
34
run : |
33
- sudo apt-get install doxygen
34
35
pip3 install jinja2 Pygments
35
36
36
37
- name : Build
Original file line number Diff line number Diff line change
1
+ name : projgeom-cpp
2
+ channels :
3
+ - conda-forge
4
+ dependencies :
5
+ - doxygen
You can’t perform that action at this time.
0 commit comments