Commit 6325305a by Jonathan Thomas

Adding --scan to tests in GitLab CI, for more output, and adding llama 3 test.

parent cbbebe52
Pipeline #12450 passed with stages
in 2 minutes 58 seconds
......@@ -68,8 +68,8 @@ build_mod:
gpt-3.5-turbo:
stage: test
script:
- echo "Running tests with `gpt-3.5-turbo`"
- ./gradlew test
- echo "Running tests with gpt-3.5-turbo"
- ./gradlew test --scan
when: manual
tags:
- minecraft
......@@ -78,9 +78,21 @@ gpt-3.5-turbo:
gpt-4o:
stage: test
script:
- echo "Running tests with `gpt-4o`"
- echo "Running tests with gpt-4o"
- export API_MODEL="gpt-4o"
- ./gradlew test
- ./gradlew test --scan
when: manual
tags:
- minecraft
# Optional test (gpt 4o)
llama3-8b:
stage: test
script:
- echo "Running tests with llama3-8b"
- export API_URL="http://127.0.0.1:4000/v1/chat/completions"
- export API_MODEL="llama3"
- ./gradlew test --scan
when: manual
tags:
- minecraft
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment