Add caching of Gradle build configuration cache

This commit is contained in:
Paul Merlin 2020-06-15 15:58:20 +02:00
parent 806543fb3a
commit 4c7d97cca4
7 changed files with 125 additions and 13 deletions

View file

@ -1,10 +1,12 @@
import * as cacheWrapper from './cache-wrapper'
import * as cacheDependencies from './cache-dependencies'
import * as cacheConfiguration from './cache-configuration'
// Invoked by GitHub Actions
export async function run(): Promise<void> {
await cacheWrapper.cacheWrapperDist()
await cacheDependencies.cacheDependencies()
await cacheConfiguration.cacheConfiguration()
}
run()