Commit 49276b1d by Jonathan Thomas

Adding --info and artifact uploads for test

parent 6325305a
Pipeline #12451 passed with stages
in 4 minutes 45 seconds
...@@ -69,8 +69,11 @@ gpt-3.5-turbo: ...@@ -69,8 +69,11 @@ gpt-3.5-turbo:
stage: test stage: test
script: script:
- echo "Running tests with gpt-3.5-turbo" - echo "Running tests with gpt-3.5-turbo"
- ./gradlew test --scan - ./gradlew test --info
when: manual when: manual
artifacts:
paths:
- build/reports/tests/test/*
tags: tags:
- minecraft - minecraft
...@@ -80,8 +83,11 @@ gpt-4o: ...@@ -80,8 +83,11 @@ gpt-4o:
script: script:
- echo "Running tests with gpt-4o" - echo "Running tests with gpt-4o"
- export API_MODEL="gpt-4o" - export API_MODEL="gpt-4o"
- ./gradlew test --scan - ./gradlew test --info
when: manual when: manual
artifacts:
paths:
- build/reports/tests/test/*
tags: tags:
- minecraft - minecraft
...@@ -92,8 +98,11 @@ llama3-8b: ...@@ -92,8 +98,11 @@ llama3-8b:
- echo "Running tests with llama3-8b" - echo "Running tests with llama3-8b"
- export API_URL="http://127.0.0.1:4000/v1/chat/completions" - export API_URL="http://127.0.0.1:4000/v1/chat/completions"
- export API_MODEL="llama3" - export API_MODEL="llama3"
- ./gradlew test --scan - ./gradlew test --info
when: manual when: manual
artifacts:
paths:
- build/reports/tests/test/*
tags: tags:
- minecraft - 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