Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/maven-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,16 @@ jobs:

- name: Build and Test with Coverage [Linux]
if: runner.os == 'Linux'
shell: bash
run: |
export PATH="$HOME/.mvnd/bin:$PATH"
if ! command -v mvnd >/dev/null 2>&1; then
echo "mvnd not found, installing..."
curl -fsSL https://github.com/apache/maven-mvnd/releases/download/${{ env.MVND_VERSION }}/maven-mvnd-${{ env.MVND_VERSION }}-linux-amd64.tar.gz | tar xz
mkdir -p ~/.mvnd
mv maven-mvnd-${{ env.MVND_VERSION }}-linux-amd64/* ~/.mvnd/
export PATH="$HOME/.mvnd/bin:$PATH"
fi
# -T1: single-threaded build so reactor order is respected and agentscope-core
# is installed before modules (e.g. subagent) that resolve it from the reactor.
mvnd -B -T1 clean verify
Expand Down
6 changes: 6 additions & 0 deletions agentscope-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -140,5 +140,11 @@
<groupId>com.networknt</groupId>
<artifactId>json-schema-validator</artifactId>
</dependency>

<dependency>
<groupId>io.opentelemetry</groupId>
<artifactId>opentelemetry-api</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
Loading
Loading