ebiten/.github/workflows/test.yml

104 lines
3.4 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]
2021-08-05 21:07:51 +02:00
go: ['1.15.15', '1.16.7', '1.17.0-rc2']
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 }}
2021-02-14 10:31:53 +01:00
stable: false
2020-08-16 12:20:57 +02:00
- name: Setup JDK
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
2020-08-16 12:20:57 +02:00
- 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 libpulse-dev libxcursor-dev libxi-dev libxinerama-dev libxrandr-dev libxxf86vm-dev
- name: Install wasmbrowsertest
run: |
# TODO: Use go install github.com/agnivade/wasmbrowsertest@... on Go 1.16 or later.
mkdir /tmp/wasmbrowsertest
cd /tmp/wasmbrowsertest
go mod init foo
2021-02-14 10:43:52 +01:00
go get github.com/agnivade/wasmbrowsertest
go build -o wasmbrowsertest github.com/agnivade/wasmbrowsertest
mv ./wasmbrowsertest $(go env GOPATH)/bin/go_js_wasm_exec
2020-08-16 12:20:57 +02:00
- name: Prepare ebitenmobile test
if: ${{ !startsWith(matrix.go, '1.15.') }}
run: |
local_ebiten=$(pwd)
cd /tmp
git clone --depth=1 https://github.com/hajimehoshi/go-inovation
cd go-inovation
go mod edit -replace=github.com/hajimehoshi/ebiten/v2=$local_ebiten
go mod tidy
- 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)
2021-03-26 18:34:50 +01:00
# TODO: Investigate times out on Windows. (#1313)
if: ${{ matrix.os != 'windows-latest' }}
run: |
env GOOS=js GOARCH=wasm go test -tags=example -v ./...
2020-12-14 17:01:41 +01:00
env GOOS=js GOARCH=wasm go test -tags=example,ebitenwebgl1 -v ./...
- name: Install ebitenmobile
run: |
go install ./cmd/ebitenmobile
- name: ebitenmobile bind (Android)
if: ${{ !startsWith(matrix.go, '1.15.') }}
run: |
cd /tmp/go-inovation
ebitenmobile bind -target android -javapkg com.hajimehoshi.goinovation -o inovation.aar -v github.com/hajimehoshi/go-inovation/mobile
- name: ebitenmobile bind (iOS)
if: ${{ matrix.os == 'macos-latest' && !startsWith(matrix.go, '1.15.') }}
run: |
cd /tmp/go-inovation
ebitenmobile bind -target ios -o Inovation.framework -v github.com/hajimehoshi/go-inovation/mobile