Skip to content

build: Simplify build infrastructure for command line tools #1

build: Simplify build infrastructure for command line tools

build: Simplify build infrastructure for command line tools #1

Workflow file for this run

name: CI
on:
push:
tags:
- '*'
pull_request:
workflow_dispatch:
permissions: read-all
jobs:
build:
strategy:
matrix:
color: ["orange"]
store: ["fdroid", "github", "google"]
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4
with:
java-version: '17'
distribution: 'temurin'
- name: Gradle Wrapper Validation
uses: gradle/wrapper-validation-action@b231772637bb498f11fdbc86052b6e8a8dc9fc92 # v2
- name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
- name: Setup Gradle
uses: gradle/actions/setup-gradle@1168cd3d07c1876a65e1724114de42ccbdfa7b78 # v3
with:
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
- name: Build ${{ matrix.color }}${{ matrix.store }}Debug
run: ./gradlew --no-configuration-cache build{{ matrix.color }}${{ matrix.store }}Debug