Skip to content

Commit

Permalink
Add GitHub actions to eclipse-packages (eclipse-packaging#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonahgraham authored Aug 25, 2023
1 parent 254ee92 commit 65cfd12
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build EPP

on: [push, pull_request]

jobs:
build:
strategy:
matrix:
package:
- committers
- cpp
- dsl
- embedcpp
- java
- jee
- modeling
- parallel
- php
- rcp
- scout
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Set up Maven
uses: stCarolas/setup-maven@07fbbe97d97ef44336b7382563d66743297e442f # v4.5
with:
maven-version: 3.9.2
- name: Build with Maven
run: mvn clean verify -Pepp.package.${{ matrix.package }}

0 comments on commit 65cfd12

Please sign in to comment.