Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
thejohnfreeman committed Dec 11, 2024
1 parent c7f2aa4 commit eb54f95
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/libxrpl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
conan remote list
conan remote remove ripple || true
# Do not quote the URL. An empty string will be accepted (with a non-fatal warning), but a missing argument will not.
conan remote add ripple ${{ env.CONAN_URL }} --insert 0
conan remote add --index 0 ripple ${{ env.CONAN_URL }}
- name: Parse new version
id: version
shell: bash
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ jobs:
conan config install .github/conan/
conan profile detect --name detected || true
touch $(conan config home)/profiles/matrix
conan profile show --profile default | tee "${GITHUB_STEP_SUMMARY}"
echo '```' >> "${GITHUB_STEP_SUMMARY}"
conan profile show --profile default | tee --append "${GITHUB_STEP_SUMMARY}"
echo '```' >> "${GITHUB_STEP_SUMMARY}"
- name: build dependencies
uses: ./.github/actions/dependencies
env:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/nix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ jobs:
pip install --upgrade conan
- name: check environment
run: |
env | sort
echo ${PATH} | tr ':' '\n'
python --version | tee --append "${GITHUB_STEP_SUMMARY}"
conan --version | tee --append "${GITHUB_STEP_SUMMARY}"
cmake --version | tee --append "${GITHUB_STEP_SUMMARY}"
env | sort
- name: configure Conan
run: |
conan config install .github/conan/
Expand All @@ -86,7 +86,9 @@ jobs:
{% set cc = "${{ matrix.profile.cc }}" %}
{% set cxx = "${{ matrix.profile.cxx }}" %}
EOF
conan profile show --profile default | tee "${GITHUB_STEP_SUMMARY}"
echo '```' >> "${GITHUB_STEP_SUMMARY}"
conan profile show --profile default | tee --append "${GITHUB_STEP_SUMMARY}"
echo '```' >> "${GITHUB_STEP_SUMMARY}"
- name: archive profile
# Create this archive before dependencies are added to the local cache.
run: tar -czf conan.tar -C ~/.conan2 .
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ jobs:
cat >$(conan config home)/profiles/matrix <<EOF
{% set runtime = "MT${{ matrix.configuration == 'Debug' && 'd' || '' }}" %}
EOF
conan profile show --profile default | tee "${GITHUB_STEP_SUMMARY}"
echo '```' >> "${GITHUB_STEP_SUMMARY}"
conan profile show --profile default | tee --append "${GITHUB_STEP_SUMMARY}"
echo '```' >> "${GITHUB_STEP_SUMMARY}"
- name: build dependencies
uses: ./.github/actions/dependencies
env:
Expand Down

0 comments on commit eb54f95

Please sign in to comment.