Skip to content

Commit eb54f95

Browse files
fixes
1 parent c7f2aa4 commit eb54f95

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

.github/workflows/libxrpl.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
conan remote list
4848
conan remote remove ripple || true
4949
# 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 }}
5151
- name: Parse new version
5252
id: version
5353
shell: bash

.github/workflows/macos.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@ jobs:
5353
conan config install .github/conan/
5454
conan profile detect --name detected || true
5555
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}"
5759
- name: build dependencies
5860
uses: ./.github/actions/dependencies
5961
env:

.github/workflows/nix.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,11 @@ jobs:
7171
pip install --upgrade conan
7272
- name: check environment
7373
run: |
74+
env | sort
7475
echo ${PATH} | tr ':' '\n'
7576
python --version | tee --append "${GITHUB_STEP_SUMMARY}"
7677
conan --version | tee --append "${GITHUB_STEP_SUMMARY}"
7778
cmake --version | tee --append "${GITHUB_STEP_SUMMARY}"
78-
env | sort
7979
- name: configure Conan
8080
run: |
8181
conan config install .github/conan/
@@ -86,7 +86,9 @@ jobs:
8686
{% set cc = "${{ matrix.profile.cc }}" %}
8787
{% set cxx = "${{ matrix.profile.cxx }}" %}
8888
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}"
9092
- name: archive profile
9193
# Create this archive before dependencies are added to the local cache.
9294
run: tar -czf conan.tar -C ~/.conan2 .

.github/workflows/windows.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,9 @@ jobs:
7171
cat >$(conan config home)/profiles/matrix <<EOF
7272
{% set runtime = "MT${{ matrix.configuration == 'Debug' && 'd' || '' }}" %}
7373
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}"
7577
- name: build dependencies
7678
uses: ./.github/actions/dependencies
7779
env:

0 commit comments

Comments
 (0)