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

tjwatson pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/felix-atomos.git

commit 9f33f1d6e46470e5dce88724d223b3191f09fcb3
Author: Thomas Watson <[email protected]>
AuthorDate: Wed Feb 26 09:45:43 2020 -0600

    Add a build step that uses Felix framework
    
    Also update to Graal 20.0.0
---
 .github/workflows/maven.yml | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index dabc0c1..072f745 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -20,17 +20,19 @@ jobs:
       uses: actions/[email protected] 
       with:
         java-version: ${{ matrix.java_version }}
-    - name: Build with Maven
+    - name: Main build using Felix
+      run: ./mvnw clean install -B -Pfelix -Pjava8
+    - name: Main build using Equinox
       run: ./mvnw clean install -B -Pequinox -Pjava8
     - name: Setup GraalVM environment
       if: matrix.os == 'ubuntu-latest'
       uses: DeLaGuardo/[email protected]
       with:
         # The GraalVM version to make available on the path.
-        graalvm-version: '19.3.0.java8'
-    - name: Install native image
+        graalvm-version: '20.0.0.java8'
+    - name: Install substrate native-image support
       if: matrix.os == 'ubuntu-latest'
       run: gu install native-image
-    - name: Build substrate with maven
+    - name: Build Equinox substrate example
       if: matrix.os == 'ubuntu-latest'
       run: ./mvnw clean package -f 
atomos.examples/atomos.examples.substrate.equinox/pom.xml

Reply via email to