forked from XRPLF/rippled
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/develop' into scottschurr--unu…
…sed-charge * upstream/develop: fix: Fix NuDB build error via Conan patch (5061) Disallow filtering account_objects by unsupported types (5056) chore: Add comments to SignerEntries.h (5059) chore: Rename two files from Directory* to Dir*: (5058) Update BUILD.md after PR 5052 (5067) Add xrpld build option and Conan package test (5052) chore: remove repeat words (5053) fix CTID in tx command returns invalidParams on lowercase hex (5049) Invariant: prevent a deleted account from leaving (most) artifacts on the ledger. (4663) Bump codecov plugin version to version 4.5.0 (5055) fix "account_nfts" with unassociated marker returning issue (5045) fixInnerObjTemplate2 amendment (5047) Set version to 2.3.0-b1 Ignore restructuring commits (4997) Recompute loops (4997) Rewrite includes (4997) Rearrange sources (4997) Move CMake directory (4997) Add bin/physical.sh (4997) Prepare to rearrange sources: (4997)
- Loading branch information
Showing
1,344 changed files
with
7,280 additions
and
7,303 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -222,7 +222,7 @@ jobs: | |
- name: upload coverage report | ||
uses: wandalen/[email protected] | ||
with: | ||
action: codecov/codecov-action@v4.3.0 | ||
action: codecov/codecov-action@v4.5.0 | ||
with: | | ||
files: coverage.xml | ||
fail_ci_if_error: true | ||
|
@@ -232,3 +232,53 @@ jobs: | |
token: ${{ secrets.CODECOV_TOKEN }} | ||
attempt_limit: 5 | ||
attempt_delay: 210000 # in milliseconds | ||
|
||
conan: | ||
needs: dependencies | ||
runs-on: [self-hosted, heavy] | ||
container: rippleci/rippled-build-ubuntu:aaf5e3e | ||
env: | ||
build_dir: .build | ||
configuration: Release | ||
steps: | ||
- name: download cache | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: linux-gcc-${{ env.configuration }} | ||
- name: extract cache | ||
run: | | ||
mkdir -p ~/.conan | ||
tar -xzf conan.tar -C ~/.conan | ||
- name: check environment | ||
run: | | ||
env | sort | ||
echo ${PATH} | tr ':' '\n' | ||
conan --version | ||
cmake --version | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
- name: dependencies | ||
uses: ./.github/actions/dependencies | ||
env: | ||
CONAN_URL: http://18.143.149.228:8081/artifactory/api/conan/conan-non-prod | ||
with: | ||
configuration: ${{ env.configuration }} | ||
- name: export | ||
run: | | ||
version=$(conan inspect --raw version .) | ||
reference="xrpl/${version}@local/test" | ||
conan remove -f ${reference} || true | ||
conan export . local/test | ||
echo "reference=${reference}" >> "${GITHUB_ENV}" | ||
- name: build | ||
run: | | ||
cd examples/example | ||
mkdir ${build_dir} | ||
cd ${build_dir} | ||
conan install .. --output-folder . \ | ||
--require-override ${reference} --build missing | ||
cmake .. \ | ||
-DCMAKE_TOOLCHAIN_FILE:FILEPATH=./build/${configuration}/generators/conan_toolchain.cmake \ | ||
-DCMAKE_BUILD_TYPE=${configuration} | ||
cmake --build . | ||
./example | grep '^[[:digit:]]\+\.[[:digit:]]\+\.[[:digit:]]\+' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.