Set DPI to 72 for splash screen #306
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build EPP | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
package: | |
- committers | |
- cpp | |
- dsl | |
- embedcpp | |
- java | |
- jee | |
- modeling | |
- php | |
- rcp | |
- scout | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
cache: maven | |
- name: Set up Maven | |
uses: stCarolas/setup-maven@07fbbe97d97ef44336b7382563d66743297e442f # v4.5 | |
with: | |
maven-version: 3.9.9 | |
- name: Build with Maven | |
run: mvn clean verify -B -Pepp.p2.${{ matrix.package }} -Pepp.product.${{ matrix.package }} -Pepp.p2.common | |
- name: Upload bundle information | |
uses: actions/upload-artifact@v3 | |
if: success() || failure() | |
with: | |
name: bundles.info for ${{ matrix.package }} | |
path: '**/configuration/org.eclipse.equinox.simpleconfigurator/bundles.info' |