Remove obsolete API filter for GCData and Display on MacOS #4118
Workflow file for this run
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
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
name: SWT Matrix Build | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
event_file: | |
name: "Event File" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Upload | |
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 | |
with: | |
name: Event File | |
path: ${{ github.event_path }} | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
java: [ '17' ] | |
config: | |
- { name: Linux, os: ubuntu-latest, native: gtk.linux.x86_64 } | |
- { name: Windows, os: windows-latest, native: win32.win32.x86_64 } | |
- { name: MacOS x86, os: macos-13, native: cocoa.macosx.x86_64 } | |
- { name: MacOS ARM, os: macos-latest, native: cocoa.macosx.aarch64 } | |
name: Verify ${{ matrix.config.name }} with Java-${{ matrix.java }} | |
runs-on: ${{ matrix.config.os }} | |
steps: | |
- name: checkout swt | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
with: | |
fetch-depth: 0 # required for jgit timestamp provider to work | |
lfs: false # lfs-pull is not necessary, the natives are re-build in each run | |
- name: Install Linux requirements | |
if: ${{ matrix.config.native == 'gtk.linux.x86_64'}} | |
run: | | |
sudo apt-get update -qq | |
sudo apt-get install -qq -y libgtk-3-dev freeglut3-dev webkit2gtk-driver | |
- name: Pull large static Windows binaries | |
if: ${{ matrix.config.native == 'win32.win32.x86_64'}} | |
run: | | |
git lfs pull --include='/binaries/org.eclipse.swt.win32.win32.x86_64/WebView2Loader.dll' | |
- name: Set up Java ${{ matrix.java }} | |
uses: actions/setup-java@b36c23c0d998641eff861008f374ee103c25ac73 # v4.4.0 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'temurin' | |
cache: maven | |
- name: Set up Maven | |
uses: stCarolas/setup-maven@v5 | |
with: | |
maven-version: 3.9.9 | |
- name: Build | |
run: >- | |
${{ contains(matrix.config.native, 'linux') && 'xvfb-run' || '' }} | |
mvn --batch-mode -V -U -e | |
--threads 1C | |
-DforkCount=1 | |
'-Dnative=${{ matrix.config.native }}' | |
-Papi-check | |
'-Dtycho.baseline.replace=none' | |
--fail-at-end | |
-DskipNativeTests=false | |
-DfailIfNoTests=false | |
'-Dtycho.version=4.0.8' | |
clean install | |
- name: Performance tests | |
if: contains(github.event.pull_request.labels.*.name, 'performance') | |
working-directory: tests/org.eclipse.swt.tests | |
run: >- | |
${{ contains(matrix.config.native, 'linux') && 'xvfb-run' || '' }} | |
mvn --batch-mode -V -U -e | |
-DforkCount=1 | |
--fail-at-end | |
-DskipNativeTests=true | |
-DfailIfNoTests=true | |
-Dtest=PerformanceTests | |
integration-test | |
- name: Upload Test Results for ${{ matrix.config.name }} / Java-${{ matrix.java }} | |
if: always() | |
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 | |
with: | |
name: test-results-${{ matrix.config.native }}-java${{ matrix.java }} | |
if-no-files-found: warn | |
path: | | |
${{ github.workspace }}/**/target/surefire-reports/*.xml |