Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions .github/workflows/ci-cache.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: CI Cache

on:
workflow_dispatch:

jobs:
build-build:
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sync names logic

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done


runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '21'
cache: gradle
- name: Execute
run: |
./gradlew build
./gradlew build
./gradlew build

build-clean-build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '21'
cache: gradle
- name: Execute
run: |
./gradlew build
./gradlew clean # preserves configuration caches
./gradlew build
./gradlew build