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
4 changes: 3 additions & 1 deletion .github/workflows/core-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@ on: [pull_request]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1

- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8

- name: Build with Maven
run: mvn -B install --file pom.xml -Dgpg.skip
25 changes: 13 additions & 12 deletions psc-flink/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,19 @@
<snakeyaml.version>2.2</snakeyaml.version>
</properties>

<!-- this is needed due to io.confluent:kafka-schema-registry-client not found in mvn central-->
<repositories>
<repository>
<id>io-confluent</id>
<name>io-confluent</name>
<url>https://packages.confluent.io/maven</url>
<releases>
<enabled>true</enabled>
<updatePolicy>interval:60</updatePolicy>
</releases>
</repository>
</repositories>
<!--io-confluent repository commented out in favor of maven central mirrors-->

<!-- <repositories>-->
<!-- <repository>-->
<!-- <id>io-confluent</id>-->
<!-- <name>io-confluent</name>-->
<!-- <url>https://packages.confluent.io/maven</url>-->
<!-- <releases>-->
<!-- <enabled>true</enabled>-->
<!-- <updatePolicy>interval:60</updatePolicy>-->
<!-- </releases>-->
<!-- </repository>-->
<!-- </repositories>-->

<dependencies>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,12 @@
import org.apache.flink.test.util.MiniClusterWithClientResource;
import org.apache.flink.util.CloseableIterator;
import org.apache.flink.util.TestLogger;
import org.junit.Ignore;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Nested;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.TestInstance;
Expand Down Expand Up @@ -665,6 +667,7 @@ private PscStream getPscStream(

/** Integration test based on connector testing framework. */
@Nested
@Disabled("Skipping due to flakiness on GitHub actions")
class IntegrationTests extends SourceTestSuiteBase<String> {
@TestSemantics
CheckpointingMode[] semantics = new CheckpointingMode[] {CheckpointingMode.EXACTLY_ONCE};
Expand Down