Commit eb54f95 1 parent c7f2aa4 commit eb54f95 Copy full SHA for eb54f95
File tree 4 files changed +11
-5
lines changed
4 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 47
47
conan remote list
48
48
conan remote remove ripple || true
49
49
# Do not quote the URL. An empty string will be accepted (with a non-fatal warning), but a missing argument will not.
50
- conan remote add ripple ${{ env.CONAN_URL }} --insert 0
50
+ conan remote add --index 0 ripple ${{ env.CONAN_URL }}
51
51
- name : Parse new version
52
52
id : version
53
53
shell : bash
Original file line number Diff line number Diff line change 53
53
conan config install .github/conan/
54
54
conan profile detect --name detected || true
55
55
touch $(conan config home)/profiles/matrix
56
- conan profile show --profile default | tee "${GITHUB_STEP_SUMMARY}"
56
+ echo '```' >> "${GITHUB_STEP_SUMMARY}"
57
+ conan profile show --profile default | tee --append "${GITHUB_STEP_SUMMARY}"
58
+ echo '```' >> "${GITHUB_STEP_SUMMARY}"
57
59
- name : build dependencies
58
60
uses : ./.github/actions/dependencies
59
61
env :
Original file line number Diff line number Diff line change @@ -71,11 +71,11 @@ jobs:
71
71
pip install --upgrade conan
72
72
- name : check environment
73
73
run : |
74
+ env | sort
74
75
echo ${PATH} | tr ':' '\n'
75
76
python --version | tee --append "${GITHUB_STEP_SUMMARY}"
76
77
conan --version | tee --append "${GITHUB_STEP_SUMMARY}"
77
78
cmake --version | tee --append "${GITHUB_STEP_SUMMARY}"
78
- env | sort
79
79
- name : configure Conan
80
80
run : |
81
81
conan config install .github/conan/
86
86
{% set cc = "${{ matrix.profile.cc }}" %}
87
87
{% set cxx = "${{ matrix.profile.cxx }}" %}
88
88
EOF
89
- conan profile show --profile default | tee "${GITHUB_STEP_SUMMARY}"
89
+ echo '```' >> "${GITHUB_STEP_SUMMARY}"
90
+ conan profile show --profile default | tee --append "${GITHUB_STEP_SUMMARY}"
91
+ echo '```' >> "${GITHUB_STEP_SUMMARY}"
90
92
- name : archive profile
91
93
# Create this archive before dependencies are added to the local cache.
92
94
run : tar -czf conan.tar -C ~/.conan2 .
Original file line number Diff line number Diff line change 71
71
cat >$(conan config home)/profiles/matrix <<EOF
72
72
{% set runtime = "MT${{ matrix.configuration == 'Debug' && 'd' || '' }}" %}
73
73
EOF
74
- conan profile show --profile default | tee "${GITHUB_STEP_SUMMARY}"
74
+ echo '```' >> "${GITHUB_STEP_SUMMARY}"
75
+ conan profile show --profile default | tee --append "${GITHUB_STEP_SUMMARY}"
76
+ echo '```' >> "${GITHUB_STEP_SUMMARY}"
75
77
- name : build dependencies
76
78
uses : ./.github/actions/dependencies
77
79
env :
You can’t perform that action at this time.
0 commit comments