Skip to content

Commit 1420f37

Browse files
committed
Use OS-specific remotes
1 parent d22b8cb commit 1420f37

File tree

3 files changed

+1
-21
lines changed

3 files changed

+1
-21
lines changed

.github/actions/dependencies/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ inputs:
33
configuration:
44
required: true
55
remote_name:
6-
required: false
6+
required: true
77
# An implicit input is the environment variable `build_dir`.
88
runs:
99
using: composite

.github/workflows/macos.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -98,16 +98,6 @@ jobs:
9898
run: |
9999
conan export --version 1.1.10 external/snappy
100100
conan export --version 4.0.3 external/soci
101-
- name: add Ripple Conan remote
102-
if: env.CONAN_URL != ''
103-
shell: bash
104-
run: |
105-
if conan remote list | grep -q "ripple"; then
106-
conan remote remove ripple
107-
echo "Removed conan remote ripple"
108-
fi
109-
conan remote add --index 0 ripple "${CONAN_URL}"
110-
echo "Added conan remote ripple at ${CONAN_URL}"
111101
- name: build dependencies
112102
uses: ./.github/actions/dependencies
113103
with:

.github/workflows/windows.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -93,16 +93,6 @@ jobs:
9393
run: |
9494
conan export --version 1.1.10 external/snappy
9595
conan export --version 4.0.3 external/soci
96-
- name: add Ripple Conan remote
97-
if: env.CONAN_URL != ''
98-
shell: bash
99-
run: |
100-
if conan remote list | grep -q "ripple"; then
101-
conan remote remove ripple
102-
echo "Removed conan remote ripple"
103-
fi
104-
conan remote add --index 0 ripple "${CONAN_URL}"
105-
echo "Added conan remote ripple at ${CONAN_URL}"
10696
- name: build dependencies
10797
uses: ./.github/actions/dependencies
10898
with:

0 commit comments

Comments
 (0)