actions: More GitHub actions (#1636)
* actions: Run in parallel * actions: NPC stats scraper * actions: Rename actions * actions: Auto approve NPC stats updates * gradle: Add tasks for different wiki scrape actions * actions: Add item stats scraper * actions: run scraper on a schedule (twice a week) * actions: gradle wrapper updater
This commit is contained in:
@@ -12,3 +12,17 @@ dependencies {
|
||||
testImplementation group: 'org.slf4j', name: 'slf4j-simple', version: slf4j
|
||||
testImplementation project(path: ':cache', configuration: 'testArchives')
|
||||
}
|
||||
|
||||
task update {
|
||||
dependsOn ":cache-client:build"
|
||||
|
||||
doLast {
|
||||
def path = sourceSets.main.runtimeClasspath
|
||||
def loader = new URLClassLoader(path.collect { f -> f.toURI().toURL() } as URL[])
|
||||
def cacheClient = loader.loadClass('net.runelite.cache.client.CacheClient')
|
||||
|
||||
cacheClient.getCache(rsversion);
|
||||
|
||||
loader.close()
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user