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

jgallimore pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee.git


The following commit(s) were added to refs/heads/master by this push:
     new d34d1d6  TOMEE-2866 Add github actions for master branchx!
     new 7e865bd  Merge pull request #672 from cesarhernandezgt/TOMEE-2866
d34d1d6 is described below

commit d34d1d64b47b08efd56276c02fea53c5bf12469e
Author: CesarHernandezGt <[email protected]>
AuthorDate: Wed Jul 8 20:33:08 2020 -0600

    TOMEE-2866 Add github actions for master branchx!
---
 .github/workflows/main.yml | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
new file mode 100644
index 0000000..4b19a4c
--- /dev/null
+++ b/.github/workflows/main.yml
@@ -0,0 +1,29 @@
+name: CI
+
+on:
+  push:
+    branches:
+      - master
+  pull_request:
+    branches:
+      - master
+  workflow_dispatch:
+
+jobs:
+  build:
+    runs-on: ubuntu-16.04
+
+    steps:
+    - uses: actions/checkout@v2
+        
+    - name: Set up JDK 1.8
+      uses: joschi/setup-jdk@v2
+      with:
+        java-version: '8'
+
+    - name: Create tmp dirs
+      run: mkdir -p /tmp/tomee-trunk-ubuntu-jvm8
+
+    
+    - name: Build with Maven
+      run: mvn -U --show-version --fail-at-end 
-Djava.io.tmpdir=/tmp/tomee-trunk-ubuntu-jvm8 clean install -Pall-adapters 
-Dsurefire.useFile=false -DdisableXmlReport=true 
-Dopenejb.arquillian.debug=true -DTOMEE_LOCK_FILE=/tmp/tomee.port.lock

Reply via email to