Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
strategy:
matrix:
jdk: [ 11, 17, 21 ]
os: [ ubuntu-latest, windows-latest, macos-13 ]
os: [ ubuntu-latest, windows-latest, macos-13, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

[Full changelog](https://github.com/LearnLib/automatalib/compare/automatalib-0.12.1...HEAD)

### Added

* `automata-modelchecking-m3c` now supports ARM-based macOS systems.
* `automata-modelchecking-m3c` can now be included in jlink images.

### Changed

* AutomataLib now requires Java 11 at runtime.
Expand Down
4 changes: 0 additions & 4 deletions distribution/src/it/jlink/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,6 @@ limitations under the License.
<groupId>net.automatalib</groupId>
<artifactId>automata-brics</artifactId>
</exclusion>
<exclusion>
<groupId>net.automatalib</groupId>
<artifactId>automata-modelchecking-m3c</artifactId>
</exclusion>
<exclusion>
<groupId>net.automatalib</groupId>
<artifactId>automata-jung-visualizer</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
import net.automatalib.modelchecker.m3c.transformer.ADDTransformer;
import net.automatalib.modelchecker.m3c.transformer.ADDTransformerSerializer;
import org.testng.Assert;
import org.testng.SkipException;

public class SolverHistoryADDTest extends AbstractSolverHistoryTest<ADDTransformer<String, String>> {

Expand All @@ -50,12 +49,6 @@ public AbstractDDSolver<ADDTransformer<String, String>, String, String> getSolve
return new ADDSolver<>(cfmps);
}

@Override
public void testSolverHistory() {
// TODO this test may fail due to a bug in ADDLib. Remove this method once we bump the dependency
throw new SkipException("");
}

@Override
public <N> void testInitialPropertyTransformers(SolverData<N, ADDTransformer<String, String>, String, String> data,
N s1,
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ limitations under the License.
<tidy-pom.version>1.3.0</tidy-pom.version>

<!-- dependency versions -->
<addlib.version>3.1.0</addlib.version>
<addlib.version>4.0.0</addlib.version>
<assertj.version>3.17.1</assertj.version>
<brics-automaton.version>1.12-4</brics-automaton.version>
<build-tools.version>0.1.1</build-tools.version>
Expand Down
Loading