Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/build-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ jobs:


- name: Build
env:
AI_MODEL_CATALOG_BUILD: 1
run: cargo build --release

- name: Prepare bundle files
Expand Down Expand Up @@ -105,6 +107,7 @@ jobs:
push: true
build-args: |
BUILD_TYPE=release
AI_MODEL_CATALOG_BUILD=1
tags: |
dcspark/shinkai-node:${{ github.ref_name }}
dcspark/shinkai-node:release-latest
1 change: 1 addition & 0 deletions .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ jobs:
push: true
build-args: |
BUILD_TYPE=${{ inputs.build_type }}
AI_MODEL_CATALOG_BUILD=1
tags: |
dcspark/shinkai-node:${{ inputs.tag }}
dcspark/shinkai-node:${{ inputs.build_type }}-latest
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
./scripts/update_tools.sh

- name: Build testing image
run: docker build -t testing_image:${{ github.sha }} --build-arg COMMIT_SHA=${{ github.sha }} -f .github/Dockerfile .
run: docker build -t testing_image:${{ github.sha }} --build-arg COMMIT_SHA=${{ github.sha }} --build-arg AI_MODEL_CATALOG_BUILD=1 -f .github/Dockerfile .

test-primitives:
runs-on:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/only_linux_binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ jobs:
key: linux-build-cargo-${{ hashFiles('**/Cargo.lock') }}

- name: Build
env:
AI_MODEL_CATALOG_BUILD: 1
run: cargo build --release

- name: Upload binaries to release
Expand Down