Skip to content

Commit

Permalink
Fix integration test failures on Apple Silicon by skipping OpenSSH 7.…
Browse files Browse the repository at this point in the history
…4 tests.

The docker image used for OpenSSH 7.4 is only available for x86_64.
  • Loading branch information
norrisjeremy authored and mwiede committed Oct 24, 2022
1 parent 41d825b commit 84dfeb3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/test/java/com/jcraft/jsch/OpenSSH74ServerSigAlgsIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.EnabledOnOs;
import org.junit.jupiter.api.io.TempDir;
import org.slf4j.LoggerFactory;
import org.testcontainers.containers.GenericContainer;
Expand All @@ -29,6 +30,7 @@
import org.testcontainers.junit.jupiter.Container;
import org.testcontainers.junit.jupiter.Testcontainers;

@EnabledOnOs(architectures = "x86_64")
@Testcontainers
public class OpenSSH74ServerSigAlgsIT {

Expand Down

0 comments on commit 84dfeb3

Please sign in to comment.