File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 33set -x
44set -e
55
6+ swift build # as a workaround for building swift build from within gradle having issues on CI sometimes
7+
68./gradlew run
79./gradlew test
Original file line number Diff line number Diff line change @@ -102,7 +102,8 @@ def jextract = tasks.register("jextract", Exec) {
102102
103103 workingDir = layout. projectDirectory
104104 commandLine " swift"
105- args(" build" ) // since Swift targets which need to be jextract-ed have the jextract build plugin, we just need to build
105+ // TODO: -v for debugging build issues...
106+ args(" build" , " -v" ) // since Swift targets which need to be jextract-ed have the jextract build plugin, we just need to build
106107 // If we wanted to execute a specific subcommand, we can like this:
107108 // args("run",/*
108109 // "swift-java", "jextract",
Original file line number Diff line number Diff line change 33set -x
44set -e
55
6+ swift build # as a workaround for building swift build from within gradle having issues on CI sometimes
7+
68./gradlew run
79./gradlew test
You can’t perform that action at this time.
0 commit comments