Skip to content

Commit

Permalink
Add 'ci-ai' job
Browse files Browse the repository at this point in the history
Signed-off-by: mrizzi <[email protected]>
  • Loading branch information
mrizzi committed Nov 13, 2024
1 parent 5952f3e commit 8328085
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions .github/workflows/ci-ai.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: ci-ai

on:
workflow_dispatch:
push:
branches:
- main
paths:
- 'modules/fundamental/src/ai/**'
merge_group:
types:
- checks_requested
pull_request:
branches:
- main
paths:
- 'modules/fundamental/src/ai/**'

env:
CARGO_TERM_COLOR: always

jobs:

ci-ai:
runs-on: ubuntu-latest
steps:
- name: Maximize build space
run: |
df -h
sudo rm -rf /usr/share/dotnet
sudo rm -rf /usr/local/lib/android
sudo rm -rf /opt/ghc
sudo rm -rf /opt/hostedtoolcache/CodeQL
sudo docker image prune --all --force
sudo rm -Rf ${JAVA_HOME_8_X64}
sudo rm -Rf ${JAVA_HOME_11_X64}
sudo rm -Rf ${JAVA_HOME_17_X64}
sudo rm -Rf ${RUBY_PATH}
df -h
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- name: Install ollama
run: curl -fsSL https://ollama.com/install.sh | sh
- name: Run ollama
run: |
ollama serve &
ollama pull llama3.1:8b
- name: Test
run: cargo test -p trustify-module-fundamental ai:: -- --nocapture
env:
RUST_LOG: trustify_module_fundamental::ai=info,langchain_rust=info
OPENAI_API_KEY: ollama
OPENAI_API_BASE: http://localhost:11434/v1
OPENAI_MODEL: llama3.1:8b

0 comments on commit 8328085

Please sign in to comment.