Skip to content

Commit 4bee484

Browse files
Merge pull request #813 from johnmcfarlane/ci-update
CI update
2 parents 18ea87f + d4a0f0d commit 4bee484

5 files changed

Lines changed: 3 additions & 8 deletions

File tree

.github/deploy

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ popd
6161

6262
# Upload new version of CNL Conan package to Bintray
6363
"${PROJECT_DIR}/test/scripts/conan-setup"
64+
conan remote add johnmcfarlane/cnl https://api.bintray.com/conan/johnmcfarlane/cnl
6465
conan user -p "${CONAN_PASS}" -r johnmcfarlane/cnl "${CONAN_USER}"
6566
conan install --build=missing "${PROJECT_DIR}"
6667
conan create "${PROJECT_DIR}" "cnl/${CNL_VERSION}@johnmcfarlane/${CNL_CHANNEL}"

.github/workflows/test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,6 @@ jobs:
183183

184184
- name: Initialise Conan
185185
run: |
186-
conan remote add johnmcfarlane/cnl https://api.bintray.com/conan/johnmcfarlane/cnl && \
187186
conan profile new default --detect && \
188187
conan profile update settings.compiler=${{matrix.compiler}} default && \
189188
conan profile update settings.compiler.cppstd=${{matrix.std}} default && \
@@ -238,7 +237,6 @@ jobs:
238237
- name: Initialise Conan
239238
run: |
240239
pip.exe install conan;
241-
conan remote add johnmcfarlane/cnl https://api.bintray.com/conan/johnmcfarlane/cnl;
242240
conan profile new default;
243241
conan profile update settings.compiler="Visual Studio" default;
244242
conan profile update settings.os=Windows default;

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ Optional integration tests use Boost.Multiprecision and Boost.SIMD.
6565
1. Conan can be used to pull in essential dependencies:
6666

6767
```shell
68-
conan remote add --force johnmcfarlane/cnl https://api.bintray.com/conan/johnmcfarlane/cnl
6968
conan profile new --detect --force default
7069
conan profile update settings.compiler.libcxx=libstdc++11 default
7170
conan install --build=missing ..

conanfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ class CnlConan(ConanFile):
2323
"target": "test-unit"}
2424
generators = "cmake_find_package"
2525
no_copy_source = True
26-
requires = "gtest/1.10.0","benchmark/1.5.0@johnmcfarlane/stable"
26+
requires = "gtest/1.10.0", "benchmark/1.5.2"
2727

2828
scm = {
29-
"revision": "main",
29+
"revision": "auto",
3030
"type": "git",
3131
"url": "https://github.com/johnmcfarlane/cnl.git",
3232
}

test/scripts/conan-setup

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55

66
set -euo pipefail
77

8-
conan remote add \
9-
johnmcfarlane/cnl https://api.bintray.com/conan/johnmcfarlane/cnl
10-
118
conan profile new \
129
--detect \
1310
default

0 commit comments

Comments
 (0)