1
0

ubuntu.yml 340 B

12345678910111213141516171819
  1. image: ubuntu/lts
  2. packages:
  3. - libasound2-dev
  4. - libc6-dev
  5. - libglu1-mesa-dev
  6. - libgl1-mesa-dev
  7. - libxcursor-dev
  8. - libxi-dev
  9. - libxinerama-dev
  10. - libxrandr-dev
  11. - libxxf86vm-dev
  12. - pkg-config
  13. - golang
  14. sources:
  15. - https://github.com/hajimehoshi/ebiten
  16. tasks:
  17. - build: |
  18. cd ebiten
  19. go build -tags=example ./...