From 0f8f6bdb5486e0fc08c84017991d594a53d13f3d Mon Sep 17 00:00:00 2001 From: He-Pin Date: Fri, 26 Jan 2024 18:03:04 +0800 Subject: [PATCH] chore: Check java9+ classes in paradox. --- .github/workflows/generate-paradox-check.yml | 48 +++++++++++++++++++ .../stream/operators/source/AsSubscriber.java | 1 - .../stream/operators/sink/AsPublisher.scala | 3 +- 3 files changed, 50 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/generate-paradox-check.yml diff --git a/.github/workflows/generate-paradox-check.yml b/.github/workflows/generate-paradox-check.yml new file mode 100644 index 00000000000..61a429a9d75 --- /dev/null +++ b/.github/workflows/generate-paradox-check.yml @@ -0,0 +1,48 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +name: Generate paradox check + +on: + pull_request: + +permissions: + contents: read + +jobs: + generate-doc-check: + name: Generate paradox check + runs-on: ubuntu-20.04 + if: github.repository == 'apache/incubator-pekko' + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + fetch-tags: true + + - name: Setup Java 11 + uses: actions/setup-java@v4 + with: + distribution: temurin + java-version: 11 + + - name: Cache Coursier cache + uses: coursier/cache-action@v6.4.4 + + - name: Compile paradox documents + run: sbt ";clean ;Test / compile ;TestJdk9 / compile ;docs/paradox" diff --git a/docs/src/test/java-jdk9-only/jdocs/stream/operators/source/AsSubscriber.java b/docs/src/test/java-jdk9-only/jdocs/stream/operators/source/AsSubscriber.java index bdaeafdc1d7..a82609b25a5 100644 --- a/docs/src/test/java-jdk9-only/jdocs/stream/operators/source/AsSubscriber.java +++ b/docs/src/test/java-jdk9-only/jdocs/stream/operators/source/AsSubscriber.java @@ -20,7 +20,6 @@ import org.apache.pekko.NotUsed; import org.apache.pekko.stream.javadsl.Source; import org.apache.pekko.stream.javadsl.JavaFlowSupport; - //#imports public interface AsSubscriber { // We are 'faking' the JavaFlowSupport API here so we can include the signature as a snippet in the API, diff --git a/docs/src/test/scala/docs/stream/operators/sink/AsPublisher.scala b/docs/src/test/scala/docs/stream/operators/sink/AsPublisher.scala index ce1cf63e50c..cb5a302a198 100644 --- a/docs/src/test/scala/docs/stream/operators/sink/AsPublisher.scala +++ b/docs/src/test/scala/docs/stream/operators/sink/AsPublisher.scala @@ -13,10 +13,11 @@ package docs.stream.operators.sink -import scala.concurrent.{ ExecutionContextExecutor, Future } import org.apache.pekko.actor.ActorSystem import org.apache.pekko.stream.scaladsl.{ Sink, Source } +import scala.concurrent.ExecutionContextExecutor + object AsPublisher { implicit val system: ActorSystem = ??? implicit val ec: ExecutionContextExecutor = system.dispatcher