Skip to content

Commit

Permalink
Merge branch 'openAI' of https://github.com/CST-Group/cst-llms into o…
Browse files Browse the repository at this point in the history
…penAI
  • Loading branch information
wandemberg-eldorado committed Oct 9, 2024
2 parents dd2cd7a + 08ffeb8 commit ff96810
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/java-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,24 @@ jobs:
name: JDK ${{ matrix.Java }} build
steps:
- uses: actions/[email protected]
- name: Install Ollama
run: |
curl -fsSL https://ollama.com/install.sh | sudo -E sh
- name: Start serving
run: |
# Run the background, there is no way to daemonise at the moment
ollama serve &
# A short pause is required before the HTTP port is opened
sleep 5
# This endpoint blocks until ready
time curl -i http://localhost:11434
- name: Pull llama3
run: |
ollama pull llama3
- name: Set up Java
uses: actions/[email protected]
with:
Expand Down

0 comments on commit ff96810

Please sign in to comment.