mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
86e694941f
Closes #1462
14 lines
322 B
Bash
14 lines
322 B
Bash
export PATH=$PATH:/usr/local/go/bin
|
|
export CGO_CFLAGS=-std=gnu99
|
|
export DISPLAY=:99.0
|
|
|
|
# Install Go
|
|
curl --location --remote-name https://golang.org/dl/${GO_FILENAME}
|
|
rm -rf /usr/local/go && tar -C /usr/local -xzf ${GO_FILENAME}
|
|
|
|
# Run X
|
|
Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
|
|
|
|
# Run the tests
|
|
go test -v ./...
|