You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bahir.apache.org by es...@apache.org on 2021/11/21 20:11:16 UTC

[bahir-flink] branch BAHIR-288 created (now 4fe0ed7)

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

eskabetxe pushed a change to branch BAHIR-288
in repository https://gitbox.apache.org/repos/asf/bahir-flink.git.


      at 4fe0ed7  [BAHIR-288] Add github actions

This branch includes the following new commits:

     new 4fe0ed7  [BAHIR-288] Add github actions

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.


[bahir-flink] 01/01: [BAHIR-288] Add github actions

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

eskabetxe pushed a commit to branch BAHIR-288
in repository https://gitbox.apache.org/repos/asf/bahir-flink.git

commit 4fe0ed7bc904b714894f63eca4bfb5370a4ee709
Author: Joao Boto <bo...@boto.pro>
AuthorDate: Sun Nov 21 21:11:12 2021 +0100

    [BAHIR-288] Add github actions
---
 .github/workflows/maven-ci.yml | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/.github/workflows/maven-ci.yml b/.github/workflows/maven-ci.yml
new file mode 100644
index 0000000..12195c4
--- /dev/null
+++ b/.github/workflows/maven-ci.yml
@@ -0,0 +1,31 @@
+name: Java CI with Maven
+
+on:
+  push:
+    branches: [ master ]
+  pull_request:
+    branches: [ master ]
+
+jobs:
+  build:
+
+    runs-on: ubuntu-latest
+    strategy:
+      matrix:
+       java: ['8', '11']
+       flink-version: ['1.12.2']
+       scala-version: ['2.11', '2.12']
+
+    steps:
+    - uses: actions/checkout@v2
+    - name: Set up JDK 11
+      uses: actions/setup-java@v2
+      with:
+        java-version: '${{ matrix.java }}'
+        distribution: 'adopt'
+        cache: maven 
+    - name: Change scala version
+      run: ./dev/change-scala-version.sh ${{ matrix.scala-version }}
+      shell: bash
+    - name: Build with Maven
+      run: mvn -q clean verify -Dscala-${{ matrix.scala-version }} -Dflink.version=${{ matrix.flink-version }}