Skip to content

Commit

Permalink
Merge pull request #475 from NikitaZotov/fix/conan_remote_url
Browse files Browse the repository at this point in the history
[ci][docs] Change conan remote url
  • Loading branch information
NikitaZotov authored Feb 15, 2025
2 parents ad90ff9 + 2779520 commit 1987430
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
- name: Set Conan remote
run: |
conan remote add ostis-ai https://conan.ostis.net/artifactory/api/conan/ostis-ai-sc-machine/
conan remote add ostis-ai https://conan.ostis.net/artifactory/api/conan/ostis-ai-library/
conan remote login ostis-ai ${{ secrets.CONAN_USERNAME }} -p ${{ secrets.CONAN_API_KEY }}
- name: Create Conan package
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/test_native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
run_tests:
name: ${{ matrix.os }}, ${{ matrix.build_type }}, ${{ matrix.config.cxx }}
name: ${{ matrix.os }}, ${{ matrix.build_type.name }}, ${{ matrix.config.cxx }}
runs-on: ${{ matrix.os }}

strategy:
Expand Down Expand Up @@ -63,4 +63,3 @@ jobs:
mkdir kb
build/${{ matrix.build_type.name }}/bin/sc-builder -i kb -o kb.bin --clear
build/${{ matrix.build_type.name }}/bin/sc-machine -c sc-machine.ini -e build/${{ matrix.build_type.name }}/lib/extensions -s kb.bin -t
2 changes: 1 addition & 1 deletion docs/build/build_system.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ list(APPEND CMAKE_PREFIX_PATH ${<proj_name>_SC_MACHINE_PATH})

```sh
# Add remote repository to your Conan client configuration
conan remote add ostis-ai https://conan.ostis.net/artifactory/api/conan/ostis-ai-sc-machine
conan remote add ostis-ai https://conan.ostis.net/artifactory/api/conan/ostis-ai-library

conan install . --build=missing
cmake --preset conan-release
Expand Down
4 changes: 4 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Developer tool to review PRs -- Ellipsis

### Changed

- Rename Conan remote repository url to https://conan.ostis.net/artifactory/api/conan/ostis-ai-library

### Fixed

- SC_LOG_INFO_COLOR uses correct enum value
Expand Down
2 changes: 1 addition & 1 deletion docs/quick_start.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ You can use Conan to install sc-machine. To integrate sc-machine into your proje
6. Add the OSTIS-AI remote Conan repository:

```sh
conan remote add ostis-ai https://conan.ostis.net/artifactory/api/conan/ostis-ai-sc-machine
conan remote add ostis-ai https://conan.ostis.net/artifactory/api/conan/ostis-ai-library
```

7. Install sc-machine and its dependencies:
Expand Down

0 comments on commit 1987430

Please sign in to comment.