Skip to content

Add functionality to diff GitHub Actions job logs and update related documentation and tool definitions #1167

Add functionality to diff GitHub Actions job logs and update related documentation and tool definitions

Add functionality to diff GitHub Actions job logs and update related documentation and tool definitions #1167

Workflow file for this run

name: ollama smoke tests
on:
workflow_dispatch:
pull_request:
paths:
- yarn.lock
- ".github/workflows/ollama.yml"
- "packages/core/**/*"
- "packages/cli/**/*"
- "packages/samples/**/*"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-ollama
cancel-in-progress: true
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: yarn
- run: yarn install --frozen-lockfile
- name: typecheck
run: yarn typecheck
- name: compile
run: yarn compile
- name: download ollama docker
run: docker run -d -v ollama:/root/.ollama -p 11434:11434 --name ollama ollama/ollama
- name: run summarize-ollama-phi3
run: yarn test:summarize --model ollama:phi3 --out ./temp/summarize-ollama-phi3
# - name: run vector-search
# run: yarn run:script vector-search --model ollama:phi3 --out ./temp/rag