Skip to content

Commit 25c2c55

Browse files
committed
Migrate to bitrise-io
1 parent 624da77 commit 25c2c55

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

cache/cache.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ import (
88
"path/filepath"
99
"strings"
1010

11+
"github.com/bitrise-io/go-steputils/cache"
1112
"github.com/bitrise-io/go-utils/fileutil"
1213
"github.com/bitrise-io/go-utils/log"
1314
"github.com/bitrise-io/go-utils/pathutil"
14-
"github.com/bitrise-tools/go-steputils/cache"
1515
)
1616

1717
// Level ...

main.go

+4-5
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ import (
77
"strings"
88
"time"
99

10+
"github.com/bitrise-io/go-android/gradle"
11+
"github.com/bitrise-io/go-steputils/stepconf"
1012
"github.com/bitrise-io/go-utils/log"
1113
"github.com/bitrise-io/go-utils/pathutil"
1214
"github.com/bitrise-io/go-utils/sliceutil"
1315
"github.com/bitrise-steplib/bitrise-step-android-unit-test/cache"
1416
"github.com/bitrise-steplib/bitrise-step-android-unit-test/testaddon"
15-
"github.com/bitrise-tools/go-android/gradle"
16-
"github.com/bitrise-tools/go-steputils/stepconf"
1717
shellquote "github.com/kballard/go-shellquote"
1818
)
1919

@@ -223,7 +223,7 @@ func main() {
223223
log.Warnf("Failed to export test results for test addon: cannot get export directory for artifact (%s): %s", err)
224224
continue
225225
}
226-
226+
227227
if err := testaddon.ExportArtifact(artifact.Path, baseDir, uniqueDir); err != nil {
228228
log.Warnf("Failed to export test results for test addon: %s", err)
229229
}
@@ -232,7 +232,6 @@ func main() {
232232
}
233233
}
234234

235-
236235
if testErr != nil {
237236
os.Exit(1)
238237
}
@@ -243,4 +242,4 @@ func main() {
243242
log.Warnf("%s", warning)
244243
}
245244
log.Donef(" Done")
246-
}
245+
}

0 commit comments

Comments
 (0)