Add README and build file
view log » | |
setup | view log » |
format | view log » |
test | view log » |
build | view log » |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
[#100905] 2019/10/27 21:17:31 Booting image archlinux (default) on port 22996 [#100905] 2019/10/27 21:17:33 Waiting for guest to settle [#100905] 2019/10/27 21:17:41 Sending tasks [#100905] 2019/10/27 21:17:42 Sending build environment [#100905] 2019/10/27 21:17:42 Installing packages Warning: Permanently added '[localhost]:22996' (ECDSA) to the list of known hosts. :: Synchronizing package databases... core is up to date extra is up to date community is up to date :: Starting full system upgrade... resolving dependencies... looking for conflicting packages... Packages (1) go-2:1.13.3-1 Total Download Size: 122.42 MiB Total Installed Size: 478.81 MiB :: Proceed with installation? [Y/n] :: Retrieving packages... downloading go-2:1.13.3-1-x86_64.pkg.tar.xz... checking keyring... checking package integrity... loading package files... checking for file conflicts... checking available disk space... :: Processing package changes... installing go... :: Running post-transaction hooks... (1/1) Arming ConditionNeedsUpdate... :: Searching databases for updates... :: Searching AUR for updates... there is nothing to do [#100905] 2019/10/27 21:18:08 Cloning repositories Cloning into 'whatsmorse'... + cd whatsmorse + git checkout -q f8be6c3d2433dfefe6502c1e962575f29d0d731b + cd whatsmorse + git submodule update --init [#100905] 2019/10/27 21:18:13 Running task setup [#100905] 2019/10/27 21:18:17 Running task format [#100905] 2019/10/27 21:18:22 Running task test [#100905] 2019/10/27 21:18:28 Running task build |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
+ cd whatsmorse + go get ./... go: downloading github.com/go-macaron/session v0.0.0-20170320172209-b8e286a0dba8 go: downloading gopkg.in/macaron.v1 v1.2.4 go: extracting github.com/go-macaron/session v0.0.0-20170320172209-b8e286a0dba8 go: downloading github.com/Unknwon/com v0.0.0-20170819223952-7677a1d7c113 go: extracting github.com/Unknwon/com v0.0.0-20170819223952-7677a1d7c113 go: extracting gopkg.in/macaron.v1 v1.2.4 go: downloading golang.org/x/crypto v0.0.0-20171231215028-0fcca4842a8d go: downloading github.com/go-macaron/inject v0.0.0-20160627170012-d8a0b8677191 go: downloading gopkg.in/ini.v1 v1.32.0 go: extracting github.com/go-macaron/inject v0.0.0-20160627170012-d8a0b8677191 go: extracting gopkg.in/ini.v1 v1.32.0 go: extracting golang.org/x/crypto v0.0.0-20171231215028-0fcca4842a8d go: finding github.com/go-macaron/session v0.0.0-20170320172209-b8e286a0dba8 go: finding gopkg.in/macaron.v1 v1.2.4 go: finding github.com/Unknwon/com v0.0.0-20170819223952-7677a1d7c113 go: finding github.com/go-macaron/inject v0.0.0-20160627170012-d8a0b8677191 go: finding golang.org/x/crypto v0.0.0-20171231215028-0fcca4842a8d go: finding gopkg.in/ini.v1 v1.32.0 |
1 2 3 4 5 6 7 |
+ cd whatsmorse ++ go list ./... ++ grep -v /vendor/ + go fmt git.sr.ht/~humaid/whatsmorse ++ go list ./... ++ grep -v /vendor/ + go vet git.sr.ht/~humaid/whatsmorse |
1 2 3 4 5 |
+ cd whatsmorse ++ go list ./... ++ grep -v /vendor/ + go test -cover -race git.sr.ht/~humaid/whatsmorse ? git.sr.ht/~humaid/whatsmorse [no test files] |