You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sl...@apache.org on 2020/03/05 22:47:32 UTC

[maven-project-info-reports-plugin] branch MPIR-390 created (now 57463e6)

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

slachiewicz pushed a change to branch MPIR-390
in repository https://gitbox.apache.org/repos/asf/maven-project-info-reports-plugin.git.


      at 57463e6  [MPIR-390] Verify build by Github Action (#14)

This branch includes the following new commits:

     new 57463e6  [MPIR-390] Verify build by Github Action (#14)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[maven-project-info-reports-plugin] 01/01: [MPIR-390] Verify build by Github Action (#14)

Posted by sl...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

slachiewicz pushed a commit to branch MPIR-390
in repository https://gitbox.apache.org/repos/asf/maven-project-info-reports-plugin.git

commit 57463e6a899d61dcdab38c9b8a2d5dfae1192558
Author: Slawomir Jaranowski <sl...@payu.pl>
AuthorDate: Sat Feb 8 10:46:03 2020 +0100

    [MPIR-390] Verify build by Github Action (#14)
---
 .github/workflows/maven.yml | 42 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
new file mode 100644
index 0000000..db344ff
--- /dev/null
+++ b/.github/workflows/maven.yml
@@ -0,0 +1,42 @@
+# 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: Java CI
+
+on: [push, pull_request]
+
+jobs:
+  build:
+
+    strategy:
+      matrix:
+        os: [ubuntu-latest, windows-latest, macOS-latest]
+      fail-fast: false
+
+    runs-on: ${{ matrix.os }}
+
+    steps:
+      - name: Checkout
+        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 install -e -B -V --no-transfer-progress -P run-its