veandco / go-sdl2

SDL2 binding for Go
https://godoc.org/github.com/veandco/go-sdl2
BSD 3-Clause "New" or "Revised" License
2.2k stars 218 forks source link

Improve travis automation #387

Open depili opened 5 years ago

depili commented 5 years ago

https://github.com/veandco/go-sdl2/blob/master/.travis.yml#L18 should be augmented to building all of the examples, currently the go build command does nothing at all and will always exit with status 0.

depili commented 5 years ago

Actually just changing the go build to "go build github.com/veandco/go-sdl2/{sdl,img,mix,ttf}" should also improve things quite nicely. That would have caught #386

veeableful commented 5 years ago

Hi @depili, nice suggestion! I have changed the Travis configuration file accordingly. The CI should build the other packages now.