fix color in catergories button #113
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: Check Build | |
on: | |
push: | |
branches: | |
- master | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
BuildBinaries: | |
name: Build application packages | |
strategy: | |
matrix: | |
runtime: [ linux-x64, win-x64, android ] | |
include: | |
- runtime: linux-x64 | |
arch: x64 | |
os: ubuntu-latest | |
shell: bash | |
build: :desktop:packageUberJarForCurrentOS :desktop:packageDeb | |
setupCl: ./.github/scripts/SetupClUnix.sh | |
# - runtime: linux-fedora-x64 | |
# arch: x64 | |
# os: ubuntu-latest | |
# shell: bash | |
# build: :desktop:packageRpm | |
# setupCl: ./.github/scripts/SetupClUnix.sh | |
- runtime: win-x64 | |
arch: x64 | |
os: windows-latest | |
shell: powershell | |
build: :desktop:packageUberJarForCurrentOS :desktop:packageMsi | |
setupCl: ./.github/scripts/SetupClWindows.ps1 | |
- runtime: android | |
arch: x64 | |
os: ubuntu-latest | |
shell: bash | |
build: :android:assembleStandardRelease | |
setupCl: ./.github/scripts/SetupClUnix.sh | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 60 | |
defaults: | |
run: | |
shell: ${{ matrix.shell }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-java@v4 | |
if: ${{ matrix.runtime != 'linux-fedora-x64' }} | |
with: | |
java-version: 21 | |
distribution: temurin | |
architecture: ${{ matrix.arch }} | |
- name: Setup Cl | |
run: ${{ matrix.setupCl }} | |
- name: Build rpm Package | |
if: ${{ matrix.runtime == 'linux-fedora-x64' }} | |
uses: Syer10/Fedora-Java17-Action@v1 | |
with: | |
command: ./gradlew ${{ matrix.build }} --stacktrace | |
- name: Build | |
if: ${{ matrix.runtime != 'linux-fedora-x64' }} | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: > | |
${{ matrix.build }} |