Add build CI file and gitignore
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 |
[#100889] 2019/10/27 20:43:51 Booting image archlinux (default) on port 22980 [#100889] 2019/10/27 20:43:54 Waiting for guest to settle [#100889] 2019/10/27 20:44:00 Sending tasks [#100889] 2019/10/27 20:44:01 Sending build environment [#100889] 2019/10/27 20:44:02 Installing packages Warning: Permanently added '[localhost]:22980' (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 [#100889] 2019/10/27 20:44:36 Cloning repositories Cloning into '_4dg'... + cd _4dg + git checkout -q 3b101d64f794e77c1070b397f00ebaf7ea385932 + cd _4dg + git submodule update --init [#100889] 2019/10/27 20:44:37 Running task setup [#100889] 2019/10/27 20:44:42 Running task format [#100889] 2019/10/27 20:44:47 Running task test [#100889] 2019/10/27 20:44:53 Running task build |
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 |
+ cd _4dg + go get ./... go: downloading github.com/stianeikeland/go-rpio v4.2.0+incompatible go: downloading github.com/BurntSushi/toml v0.3.1 go: downloading github.com/humaidq/4DG v0.0.0-20180516163743-9a1fc9d179fd go: downloading gopkg.in/macaron.v1 v1.3.4 go: downloading github.com/spf13/cobra v0.0.5 go: extracting github.com/BurntSushi/toml v0.3.1 go: extracting github.com/stianeikeland/go-rpio v4.2.0+incompatible go: extracting github.com/spf13/cobra v0.0.5 go: downloading github.com/spf13/pflag v1.0.3 go: downloading github.com/inconshreveable/mousetrap v1.0.0 go: extracting github.com/spf13/pflag v1.0.3 go: extracting github.com/inconshreveable/mousetrap v1.0.0 go: extracting gopkg.in/macaron.v1 v1.3.4 go: extracting github.com/humaidq/4DG v0.0.0-20180516163743-9a1fc9d179fd go: downloading gopkg.in/ini.v1 v1.46.0 go: downloading github.com/go-macaron/inject v0.0.0-20160627170012-d8a0b8677191 go: downloading golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4 go: downloading github.com/unknwon/com v0.0.0-20190804042917-757f69c95f3e go: extracting github.com/unknwon/com v0.0.0-20190804042917-757f69c95f3e go: extracting github.com/go-macaron/inject v0.0.0-20160627170012-d8a0b8677191 go: extracting gopkg.in/ini.v1 v1.46.0 go: extracting golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4 go: finding github.com/humaidq/4DG v0.0.0-20180516163743-9a1fc9d179fd go: finding github.com/BurntSushi/toml v0.3.1 go: finding github.com/stianeikeland/go-rpio v4.2.0+incompatible go: finding github.com/spf13/cobra v0.0.5 go: finding gopkg.in/macaron.v1 v1.3.4 go: finding github.com/spf13/pflag v1.0.3 go: finding github.com/go-macaron/inject v0.0.0-20160627170012-d8a0b8677191 go: finding github.com/unknwon/com v0.0.0-20190804042917-757f69c95f3e go: finding golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4 go: finding gopkg.in/ini.v1 v1.46.0 |
1 2 3 4 5 6 7 |
+ cd _4dg ++ go list ./... ++ grep -v /vendor/ + go fmt git.sr.ht/~humaid/_4dg git.sr.ht/~humaid/_4dg/cmd git.sr.ht/~humaid/_4dg/models ++ go list ./... ++ grep -v /vendor/ + go vet git.sr.ht/~humaid/_4dg git.sr.ht/~humaid/_4dg/cmd git.sr.ht/~humaid/_4dg/models |
1 2 3 4 5 6 7 |
+ cd _4dg ++ go list ./... ++ grep -v /vendor/ + go test -cover -race git.sr.ht/~humaid/_4dg git.sr.ht/~humaid/_4dg/cmd git.sr.ht/~humaid/_4dg/models ? git.sr.ht/~humaid/_4dg [no test files] ? git.sr.ht/~humaid/_4dg/cmd [no test files] ? git.sr.ht/~humaid/_4dg/models [no test files] |