Skip to content

Commit abf12db

Browse files
authored
chore: Set CONAN_REMOTE_URL also for forks (#5662)
This change replaces the configuration variable with the hardcoded `https://conan.ripplex.io`, making it possible for PRs from forks to use our Conan remote containing workarounds.
1 parent bdfc376 commit abf12db

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/libxrpl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Check libXRPL compatibility with Clio
22
env:
3-
CONAN_REMOTE_URL: ${{ vars.CONAN_REMOTE_URL }}
3+
CONAN_REMOTE_URL: https://conan.ripplex.io
44
CONAN_LOGIN_USERNAME_XRPLF: ${{ secrets.CONAN_REMOTE_USERNAME }}
55
CONAN_PASSWORD_XRPLF: ${{ secrets.CONAN_REMOTE_PASSWORD }}
66
on:

.github/workflows/macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ concurrency:
1818
# This part of Conan configuration is specific to this workflow only; we do not want
1919
# to pollute conan/profiles directory with settings which might not work for others
2020
env:
21-
CONAN_REMOTE_URL: ${{ vars.CONAN_REMOTE_URL }}
21+
CONAN_REMOTE_URL: https://conan.ripplex.io
2222
CONAN_REMOTE_USERNAME: ${{ secrets.CONAN_REMOTE_USERNAME }}
2323
CONAN_REMOTE_PASSWORD: ${{ secrets.CONAN_REMOTE_PASSWORD }}
2424
# This part of the Conan configuration is specific to this workflow only; we

.github/workflows/nix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ concurrency:
1717
cancel-in-progress: true
1818

1919
env:
20-
CONAN_REMOTE_URL: ${{ vars.CONAN_REMOTE_URL }}
20+
CONAN_REMOTE_URL: https://conan.ripplex.io
2121
CONAN_REMOTE_USERNAME: ${{ secrets.CONAN_REMOTE_USERNAME }}
2222
CONAN_REMOTE_PASSWORD: ${{ secrets.CONAN_REMOTE_PASSWORD }}
2323
# This part of the Conan configuration is specific to this workflow only; we

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ concurrency:
1919
group: ${{ github.workflow }}-${{ github.ref }}
2020
cancel-in-progress: true
2121
env:
22-
CONAN_REMOTE_URL: ${{ vars.CONAN_REMOTE_URL }}
22+
CONAN_REMOTE_URL: https://conan.ripplex.io
2323
CONAN_REMOTE_USERNAME: ${{ secrets.CONAN_REMOTE_USERNAME }}
2424
CONAN_REMOTE_PASSWORD: ${{ secrets.CONAN_REMOTE_PASSWORD }}
2525
# This part of the Conan configuration is specific to this workflow only; we

0 commit comments

Comments
 (0)