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
6 changes: 3 additions & 3 deletions .github/workflows/release_with_jars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
distribution: 'temurin'
java-version: '21'
cache: 'maven'
- name: Build java 8 version of Neqsim ${{ needs.get_versions.outputs.version_8 }} with Maven
- name: Build java 8 version of Neqsim ${{ needs.get_versions.outputs.version_8 }} with Maven, do not test
run: mvn -B package --file pomJava8.xml -DskipTests -Djacoco.skip=true
- name: Copy jar file to staging
run: mkdir staging && cp target/neqsim*Java8.jar staging
Expand All @@ -79,7 +79,7 @@ jobs:
distribution: 'temurin'
java-version: '17'
cache: 'maven'
- name: Build java 17 version with Maven
- name: Build java 17 version with Maven, do not test
run: mvn -B package --file pom.xml -DskipTests -Djacoco.skip=true
- name: Copy jar file to staging
run: mkdir staging && cp target/neqsim*.jar staging
Expand All @@ -104,7 +104,7 @@ jobs:
distribution: 'temurin'
java-version: '21'
cache: 'maven'
- name: Install NeqSim core to local Maven repo
- name: Install NeqSim core to local Maven repo, do not test
run: mvn -B install -DskipTests -Dmaven.javadoc.skip=true
- name: Build MCP server uber-jar
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/verify_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Generate javadoc
run: mvn javadoc:javadoc "-Daether.connector.basic.retries=5"
- name: Run tests and generate JaCoCo report
run: mvn -B test --file pom.xml -ntp -DskipITs "-Daether.connector.basic.retries=5"
run: mvn -B test --file pom.xml -ntp -DskipITs -DexcludedGroups=slow "-Daether.connector.basic.retries=5"
- name: Verify JaCoCo report exists
run: |
if [ -f target/site/jacoco/jacoco.xml ]; then
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
java-version: '21'
cache: 'maven'
- name: Run tests
run: mvn -B test --file pom.xml -ntp "-Daether.connector.basic.retries=5"
run: mvn -B test --file pom.xml -ntp -DexcludedGroups=slow "-Daether.connector.basic.retries=5"

verify_agent_skills:
name: Verify agent-skill cross-references
Expand Down
Loading