File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7979 ${{ needs.prerequisites.outputs.merge_target_command }}
8080
8181 - name : Build and test
82- run : sh gradlew test --info --stacktrace
82+ run : sh gradlew test local --info --stacktrace
8383
8484 mac :
8585 name : macOS x64
@@ -101,7 +101,7 @@ jobs:
101101 run : brew install mercurial
102102
103103 - name : Build and test
104- run : sh gradlew test --info --stacktrace
104+ run : sh gradlew test local --info --stacktrace
105105
106106 win :
107107 name : Windows x64
@@ -120,5 +120,5 @@ jobs:
120120 ${{ needs.prerequisites.outputs.merge_target_command }}
121121
122122 - name : Build and test
123- run : gradlew.bat test --info --stacktrace
123+ run : gradlew.bat test local --info --stacktrace
124124 shell : cmd
Original file line number Diff line number Diff line change @@ -184,7 +184,7 @@ def getCPU() {
184184
185185task local (type : Copy ) {
186186 doFirst {
187- delete project. buildDir
187+ delete project. buildDir. toString() + ' /cli '
188188 }
189189
190190 def os = getOS()
@@ -202,7 +202,7 @@ task local(type: Copy) {
202202 ' /cli/build/distributions/cli' +
203203 ' -' + project. version + ' -' +
204204 os + ' -' + cpu + ' .zip' ))
205- into project. buildDir
205+ into project. buildDir. toString() + ' /cli '
206206}
207207
208208task bots (type : Copy ) {
Original file line number Diff line number Diff line change 3737
3838fi
3939
40- if [ -d " ${DIR} /build" ]; then
40+ if [ -d " ${DIR} /build/cli " ]; then
4141 rm -rf " ${DIR} /bin"
42- mv " ${DIR} /build" " ${DIR} /bin"
42+ mv " ${DIR} /build/cli " " ${DIR} /bin"
4343fi
4444
4545if [ " ${OS} " = " Linux" -o " ${OS} " = " Darwin" ]; then
You can’t perform that action at this time.
0 commit comments