.github/workflows: clean up test.yml

This commit is contained in:
Hajime Hoshi 2023-03-29 15:23:51 +09:00
parent f23dd72fb4
commit 72c9ede592

View File

@ -116,11 +116,10 @@ jobs:
go mod vendor go mod vendor
go build -v . go build -v .
- name: go test - name: go test (Linux)
# TODO: Add more test environments (#1305) if: runner.os == 'Linux'
if: runner.os == 'Linux' || runner.os == 'Windows'
run: | run: |
go test -shuffle=on -v ${{ runner.os == 'Linux' && '-p 1' || '' }} ./... go test -shuffle=on -v -p=1 ./...
- name: go test (Linux 386) - name: go test (Linux 386)
if: runner.os == 'Linux' if: runner.os == 'Linux'
@ -129,13 +128,18 @@ jobs:
sudo apt-get update sudo apt-get update
sudo apt-get install gcc-multilib sudo apt-get install gcc-multilib
sudo apt-get install libasound2-dev:i386 libgl1-mesa-dev:i386 libxcursor-dev:i386 libxi-dev:i386 libxinerama-dev:i386 libxrandr-dev:i386 libxxf86vm-dev:i386 sudo apt-get install libasound2-dev:i386 libgl1-mesa-dev:i386 libxcursor-dev:i386 libxi-dev:i386 libxinerama-dev:i386 libxrandr-dev:i386 libxxf86vm-dev:i386
env CGO_ENABLED=1 GOARCH=386 go test -shuffle=on -v ${{ runner.os == 'Linux' && '-p 1' || '' }} ./... env CGO_ENABLED=1 GOARCH=386 go test -shuffle=on -v -p=1 ./...
- name: go test (Linux OpenGL ES) - name: go test (Linux OpenGL ES)
if: runner.os == 'Linux' if: runner.os == 'Linux'
run: | run: |
sudo apt-get install libgles2-mesa-dev sudo apt-get install libgles2-mesa-dev
env EBITENGINE_GRAPHICS_LIBRARY=opengl EBITENGINE_OPENGL=es go test -shuffle=on -v ${{ runner.os == 'Linux' && '-p 1' || '' }} ./... env EBITENGINE_GRAPHICS_LIBRARY=opengl EBITENGINE_OPENGL=es go test -shuffle=on -v -p=1 ./...
- name: go test (Windows)
if: runner.os == 'Windows'
run: |
go test -shuffle=on -v ./...
- name: go test (Windows 386) - name: go test (Windows 386)
if: runner.os == 'Windows' if: runner.os == 'Windows'