ebiten/.github/workflows/test.yml

64 lines
2.0 KiB
YAML
Raw Normal View History

2020-08-16 12:20:57 +02:00
name: test
on: [push, pull_request]
jobs:
test:
2020-08-16 12:20:57 +02:00
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
2020-09-17 22:02:34 +02:00
go: ['1.12.17', '1.13.15', '1.14.9', '1.15.2']
name: Test with Go ${{ matrix.go }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
2020-08-16 12:20:57 +02:00
env:
DISPLAY: ':99.0'
defaults:
run:
shell: bash
2020-08-16 12:20:57 +02:00
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Install dependencies
if: ${{ matrix.os == 'ubuntu-latest' }}
2020-08-16 12:20:57 +02:00
run: |
sudo apt-get update
sudo apt-get install libasound2-dev libgl1-mesa-dev libalut-dev libxcursor-dev libxi-dev libxinerama-dev libxrandr-dev libxxf86vm-dev
- name: Install wasmbrowsertest
run: |
2020-08-16 12:20:57 +02:00
env GO111MODULE=off go get github.com/agnivade/wasmbrowsertest
mv $(go env GOPATH)/bin/wasmbrowsertest $(go env GOPATH)/bin/go_js_wasm_exec
- name: Xvfb
if: ${{ matrix.os == 'ubuntu-latest' }}
2020-08-16 12:20:57 +02:00
run: |
Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
- name: go vet
if: ${{ matrix.os != 'windows-latest' }} # TODO: Fix go vet errors on Windows. (#1306)
2020-08-16 12:20:57 +02:00
run: |
go vet -tags=example -v ./...
- name: go build
run: |
go build -tags=example -v ./...
2020-08-16 21:12:31 +02:00
env GOOS=js GOARCH=wasm go build -tags=example -v ./...
env GOOS=windows GOARCH=amd64 go build -tags=example -v ./...
env GOOS=windows GOARCH=386 go build -tags=example -v ./...
- name: go test
if: ${{ matrix.os == 'ubuntu-latest' }} # TODO: Add more test environments (#1305)
run: |
go test -tags=example -v ./...
- name: go test (Wasm)
if: ${{ matrix.os != 'windows-latest' }} # TODO: Investigate times out on Windows. (#1313)
run: |
env GOOS=js GOARCH=wasm go test -tags=example -v ./...