You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ti...@apache.org on 2020/04/14 20:23:02 UTC

[maven-surefire] 02/02: smoke test on JDK11

This is an automated email from the ASF dual-hosted git repository.

tibordigana pushed a commit to branch parent34
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git

commit 3f862f6701ddd4cbd45ed7d1cc7063e835caa10c
Author: tibordigana <ti...@apache.org>
AuthorDate: Tue Apr 14 22:22:53 2020 +0200

    smoke test on JDK11
---
 .github/workflows/smoketest.yml | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/.github/workflows/smoketest.yml b/.github/workflows/smoketest.yml
new file mode 100644
index 0000000..d8e5181
--- /dev/null
+++ b/.github/workflows/smoketest.yml
@@ -0,0 +1,36 @@
+# 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: Unit Tests
+
+on: [pull_request]
+
+jobs:
+  build:
+    runs-on: macOS-latest
+
+    steps:
+      - name: Checkout
+        uses: actions/checkout@v1
+
+      - name: Set up JDK 11
+        uses: actions/setup-java@v1
+        with:
+          java-version: 11
+
+      - name: Build with Maven
+        run: mvn install -e -B -V -nsu --no-transfer-progress -P run-its -DskipITs