diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cba05dd618..9528884b4a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,16 +38,6 @@ jobs: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} run: | ./gradlew build --scan - - name: Print Server Logs - if: always() - run: | - cat conductor_tests.log - - name: Publish server logs - if: always() - uses: actions/upload-artifact@v3 - with: - name: server-logs - path: conductor_tests.log - name: Build and Publish snapshot if: github.event_name != 'pull_request' && github.ref == 'refs/heads/main' run: | diff --git a/java-sdk/src/test/java/com/netflix/conductor/sdk/workflow/def/WorkflowCreationTests.java b/java-sdk/src/test/java/com/netflix/conductor/sdk/workflow/def/WorkflowCreationTests.java index da999a847c..52ccde54e5 100644 --- a/java-sdk/src/test/java/com/netflix/conductor/sdk/workflow/def/WorkflowCreationTests.java +++ b/java-sdk/src/test/java/com/netflix/conductor/sdk/workflow/def/WorkflowCreationTests.java @@ -24,6 +24,7 @@ import org.junit.jupiter.api.AfterAll; import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -41,6 +42,7 @@ import static org.junit.jupiter.api.Assertions.*; +@Disabled public class WorkflowCreationTests { private static final Logger LOGGER = LoggerFactory.getLogger(WorkflowCreationTests.class);