Skip to content
This repository was archived by the owner on Oct 18, 2024. It is now read-only.

Commit 60344bd

Browse files
committed
chore(workflow): update path for debug symbols
1 parent a698a6c commit 60344bd

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
uses: actions/upload-artifact@v3
7373
with:
7474
name: debug-symbols
75-
path: '**/build/intermediates/ts_debug_symbols'
75+
path: '**/*.debug_info'
7676

7777
unit_test_debug:
7878
name: Run local tests

build-logic/ats/src/main/java/com/itsaky/androidide/treesitter/GenerateDebugSymbolsTask.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ abstract class GenerateDebugSymbolsTask : DefaultTask() {
5151

5252
@TaskAction
5353
fun generateDebugSymbols() {
54-
inputDirectory.asFileTree.files.forEach { generateDebugSymbolsForFile(it) }
54+
inputDirectory.asFileTree.files.forEach {
55+
generateDebugSymbolsForFile(it)
56+
}
5557
}
5658

5759
private fun generateDebugSymbolsForFile(input: File?) {

build-logic/ats/src/main/java/com/itsaky/androidide/treesitter/TreeSitterPlugin.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ import com.android.build.gradle.internal.plugins.LibraryPlugin
2626
import org.gradle.api.Plugin
2727
import org.gradle.api.Project
2828
import org.gradle.api.tasks.Delete
29+
import org.gradle.api.tasks.bundling.Zip
2930
import org.gradle.kotlin.dsl.create
3031
import java.util.Locale
3132

0 commit comments

Comments
 (0)