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.
The problem was `CONAN_USERNAME` environment variable, which Conan 1.x uses as the default user in package references.
- Loading branch information
1 parent
ae4ecd5
commit a06a4c9
Showing
4 changed files
with
35 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,7 +54,7 @@ jobs: | |
build_dir: .build | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: check environment | ||
run: | | ||
echo ${PATH} | tr ':' '\n' | ||
|
@@ -78,12 +78,12 @@ jobs: | |
uses: ./.github/actions/dependencies | ||
env: | ||
CONAN_URL: http://18.143.149.228:8081/artifactory/api/conan/conan-non-prod | ||
CONAN_USERNAME: ${{ secrets.CONAN_USERNAME }} | ||
CONAN_TOKEN: ${{ secrets.CONAN_TOKEN }} | ||
CONAN_LOGIN_USERNAME_RIPPLE: ${{ secrets.CONAN_USERNAME }} | ||
CONAN_PASSWORD_RIPPLE: ${{ secrets.CONAN_TOKEN }} | ||
with: | ||
configuration: ${{ matrix.configuration }} | ||
- name: upload archive | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ${{ matrix.platform }}-${{ matrix.compiler }}-${{ matrix.configuration }} | ||
path: conan.tar | ||
|
@@ -112,7 +112,7 @@ jobs: | |
build_dir: .build | ||
steps: | ||
- name: download cache | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: ${{ matrix.platform }}-${{ matrix.compiler }}-${{ matrix.configuration }} | ||
- name: extract cache | ||
|
@@ -121,13 +121,12 @@ jobs: | |
tar -xzf conan.tar -C ~/.conan | ||
- name: check environment | ||
run: | | ||
env | sort | ||
echo ${PATH} | tr ':' '\n' | ||
conan --version | ||
cmake --version | ||
env | sort | ||
ls ~/.conan | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: dependencies | ||
uses: ./.github/actions/dependencies | ||
env: | ||
|
@@ -162,7 +161,7 @@ jobs: | |
build_dir: .build | ||
steps: | ||
- name: download cache | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: ${{ matrix.platform }}-${{ matrix.compiler }}-${{ matrix.configuration }} | ||
- name: extract cache | ||
|
@@ -178,7 +177,7 @@ jobs: | |
env | sort | ||
ls ~/.conan | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: dependencies | ||
uses: ./.github/actions/dependencies | ||
env: | ||
|
@@ -202,15 +201,15 @@ jobs: | |
run: | | ||
mv "${build_dir}/coverage.xml" ./ | ||
- name: archive coverage report | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: coverage.xml | ||
path: coverage.xml | ||
retention-days: 30 | ||
- name: upload coverage report | ||
uses: wandalen/[email protected] | ||
with: | ||
action: codecov/codecov-action@v3 | ||
action: codecov/codecov-action@v4 | ||
with: | | ||
files: coverage.xml | ||
fail_ci_if_error: true | ||
|
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