Implements recognition of SVG images based on the image content. #2556
Workflow file for this run
This file contains hidden or 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
| ############################################################################### | |
| # Copyright (c) 2021 ArSysOp and others | |
| # | |
| # This program and the accompanying materials are made available under the | |
| # terms of the Eclipse Public License 2.0 which is available at | |
| # https://www.eclipse.org/legal/epl-2.0/. | |
| # | |
| # SPDX-License-Identifier: EPL-2.0 | |
| # | |
| # Contributors: | |
| # Alexander Fedorov (ArSysOp) - initial API and implementation | |
| ############################################################################### | |
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| pull_request_review_comment: | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Clean up disk space | |
| run: sudo rm -rf "/opt/ghc" && sudo rm -rf "/usr/local/share/boost" && sudo rm -rf $AGENT_TOOLSDIRECTORY | |
| - name: Checkout | |
| uses: actions/checkout@v1 | |
| - name: Set up OpenJDK 21 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '21' | |
| - name: Set up Maven | |
| uses: stCarolas/setup-maven@v4.5 | |
| with: | |
| maven-version: 3.9.11 | |
| - name: Set up Maven 2 | |
| run: echo "MAVEN_OPTS='-Xmx4096m'" > ~/.mavenrc | |
| - name: Build with Maven | |
| run: mvn clean verify --no-transfer-progress -U -DskipTests=false | |
| # Upload each output as its own artifact (so they appear individually in the UI) | |
| - name: Upload birt-report-designer linux aarch64 | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: birt-report-designer-linux-gtk-aarch64 | |
| if-no-files-found: error | |
| compression-level: 0 | |
| path: build/birt-packages/birt-report-all-in-one/target/products/birt-report-designer-all-in-one-*-linux.gtk.aarch64.tar.gz | |
| retention-days: 3 | |
| - name: Upload birt-report-designer linux x86_64 | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: birt-report-designer-linux-gtk-x86_64 | |
| if-no-files-found: error | |
| compression-level: 0 | |
| path: build/birt-packages/birt-report-all-in-one/target/products/birt-report-designer-all-in-one-*-linux.gtk.x86_64.tar.gz | |
| retention-days: 3 | |
| - name: Upload birt-report-designer macos aarch64 | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: birt-report-designer-macos-cocoa-aarch64 | |
| if-no-files-found: error | |
| compression-level: 0 | |
| path: build/birt-packages/birt-report-all-in-one/target/products/birt-report-designer-all-in-one-*-macosx.cocoa.aarch64.tar.gz | |
| retention-days: 3 | |
| - name: Upload birt-report-designer macos x86_64 | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: birt-report-designer-macos-cocoa-x86_64 | |
| if-no-files-found: error | |
| compression-level: 0 | |
| path: build/birt-packages/birt-report-all-in-one/target/products/birt-report-designer-all-in-one-*-macosx.cocoa.x86_64.tar.gz | |
| retention-days: 3 | |
| - name: Upload birt-report-designer windows x86_64 | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: birt-report-designer-win32-x86_64 | |
| if-no-files-found: error | |
| compression-level: 0 | |
| path: build/birt-packages/birt-report-all-in-one/target/products/birt-report-designer-all-in-one-*-win32.win32.x86_64.zip | |
| retention-days: 3 | |
| - name: Upload birt-report-designer windows aarch64 | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: birt-report-designer-win32-aarch64 | |
| if-no-files-found: error | |
| compression-level: 0 | |
| path: build/birt-packages/birt-report-all-in-one/target/products/birt-report-designer-all-in-one-*-win32.win32.aarch64.zip | |
| retention-days: 3 |