Skip to content

build: Simplify build infrastructure for command line tools #5

build: Simplify build infrastructure for command line tools

build: Simplify build infrastructure for command line tools #5

Workflow file for this run

name: CI
on:
push:
tags:
- '*'
pull_request:
workflow_dispatch:
permissions: read-all
jobs:
build:
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 }}
# Disable the configuration cache; it's not restored, or saved at the end, so this
# removes any overhead trying to load or save it.
- name: Check and assemble everything
run: ./gradlew --no-configuration-cache build