mirror of
https://github.com/bitfireAT/davx5-ose.git
synced 2025-12-23 23:17:50 -05:00
* Cache configurations per job * Use separate job for Dependency submission * Use GRADLE_OPTS to enable build and configuration cache * Test .android * Cache .android for configuration cache * Disable CodeQL for PRs * Fix AVD path
25 lines
562 B
YAML
25 lines
562 B
YAML
name: Dependency Submission
|
|
|
|
on:
|
|
push:
|
|
branches: [ 'main-ose' ]
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
dependency-submission:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: actions/setup-java@v5
|
|
with:
|
|
distribution: temurin
|
|
java-version: 21
|
|
|
|
- name: Generate and submit dependency graph
|
|
uses: gradle/actions/dependency-submission@v5
|
|
with:
|
|
cache-encryption-key: ${{ secrets.gradle_encryption_key }}
|
|
dependency-graph-exclude-configurations: '.*[Tt]est.* .*[cC]heck.*'
|