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

tzulitai pushed a commit to branch release-2.2
in repository https://gitbox.apache.org/repos/asf/flink-statefun.git

commit c9ba4913aa70af6afc32b5ad8aa44d8479f52ab9
Author: Tzu-Li (Gordon) Tai <tzuli...@apache.org>
AuthorDate: Mon Nov 16 17:05:41 2020 +0800

    [FLINK-20161] [ci] Add Github Actions workflow for JDK 8 build
---
 .github/workflows/java8-build.yml | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/.github/workflows/java8-build.yml 
b/.github/workflows/java8-build.yml
new file mode 100644
index 0000000..0c738bc
--- /dev/null
+++ b/.github/workflows/java8-build.yml
@@ -0,0 +1,16 @@
+name: JDK 8 Build
+
+on: [push, pull_request]
+
+jobs:
+  build:
+    runs-on: ubuntu-latest
+
+    steps:
+      - uses: actions/checkout@v2
+      - name: Set up JDK 1.8
+        uses: actions/setup-java@v1
+        with:
+          java-version: 1.8
+      - name: Build
+        run: mvn clean install -Prun-e2e-tests
\ No newline at end of file

Reply via email to