Commit 0f9683b 1 parent d0088a0 commit 0f9683b Copy full SHA for 0f9683b
File tree 1 file changed +17
-0
lines changed
1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change 49
49
- name : Install linker
50
50
uses : rui314/setup-mold@v1
51
51
52
+ - name : Install conan and fix config
53
+ shell : bash
54
+ run : |
55
+ pip3 install conan==1.62.0
56
+ conan profile new --detect default
57
+ conan profile update env.CXX="${CXX}" default
58
+ conan profile update env.CC="${CC}" default
59
+ conan profile update settings.compiler.libcxx=libstdc++11 default
60
+ conan remote add dice-group https://conan.dice-research.org/artifactory/api/conan/tentris
61
+ conan remote add tentris-private https://conan.dice-research.org/artifactory/api/conan/tentris-private
62
+ conan user -p "$CONAN_PW" -r tentris-private "$CONAN_USER"
63
+ env :
64
+ CONAN_PW : ${{ secrets.CONAN_PW }}
65
+ CONAN_USER : ${{ secrets.CONAN_USER }}
66
+ CC : ${{ steps.install_cc.outputs.cc }}
67
+ CXX : ${{ steps.install_cc.outputs.cxx }}
68
+
52
69
- uses : actions/checkout@v3
53
70
54
71
- name : Configure CMake
You can’t perform that action at this time.
0 commit comments