Add checkout of botlib dependency in CI
Some checks failed
GBCI Bundle / build-bundle (push) Failing after 17s
GBCI / build (push) Failing after 19s

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2025-12-16 17:00:14 -03:00
parent a1fef6fc37
commit 38406043d6
2 changed files with 41 additions and 0 deletions

View file

@ -18,6 +18,41 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Checkout botlib dependency
uses: actions/checkout@v4
with:
repository: GeneralBots/botlib
path: ../botlib
- name: Checkout botui dependency
uses: actions/checkout@v4
with:
repository: GeneralBots/botui
path: ../botui
- name: Checkout botbook dependency
uses: actions/checkout@v4
with:
repository: GeneralBots/botbook
path: ../botbook
- name: Checkout botmodels dependency
uses: actions/checkout@v4
with:
repository: GeneralBots/botmodels
path: ../botmodels
- name: Cache Cargo registry
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-bundle-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-bundle-
- name: Install Rust - name: Install Rust
uses: msrd0/rust-toolchain@v1 uses: msrd0/rust-toolchain@v1
with: with:

View file

@ -16,6 +16,12 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Checkout botlib dependency
uses: actions/checkout@v4
with:
repository: GeneralBots/botlib
path: ../botlib
- name: Cache Cargo registry - name: Cache Cargo registry
uses: actions/cache@v4 uses: actions/cache@v4
with: with: