runtimeverification / llvm-backend

KORE to llvm translation
BSD 3-Clause "New" or "Revised" License
34 stars 19 forks source link

Don't invoke Maven every time we run a test #1067

Closed Baltoli closed 1 month ago

Baltoli commented 1 month ago

Previously, the testing script would invoke Maven every time it compiled a pattern-matching tree; this was slow and made the CI process prone to intermittent network failures. This PR addresses the issue by instead directly invoking the compiled JAR file that we already built with Maven.

Fixes https://github.com/runtimeverification/llvm-backend/issues/1055