Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add various build manifests #1257

Merged
merged 1 commit into from Jul 27, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .builds/alpine.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
image: alpine/latest
packages:
- alsa-lib-dev
- libx11-dev
- libxrandr-dev
- libxcursor-dev
- libxinerama-dev
- libxi-dev
- mesa-dev
- pkgconf
- go
sources:
- https://github.com/hajimehoshi/ebiten
tasks:
- build: |
cd ebiten
go build . ./audio
16 changes: 16 additions & 0 deletions .builds/arch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
image: archlinux
packages:
- alsa-lib
- mesa
- libxrandr
- libxcursor
- libxinerama
- libxi
- pkg-config
- go
sources:
- https://github.com/hajimehoshi/ebiten
tasks:
- build: |
cd ebiten
go build . ./audio
19 changes: 19 additions & 0 deletions .builds/debian.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
image: debian/testing
packages:
- libc6-dev
- libglu1-mesa-dev
- libgl1-mesa-dev
- libxcursor-dev
- libxi-dev
- libxinerama-dev
- libxrandr-dev
- libxxf86vm-dev
- libasound2-dev
- pkg-config
- golang
sources:
- https://github.com/hajimehoshi/ebiten
tasks:
- build: |
cd ebiten
go build . ./audio
18 changes: 18 additions & 0 deletions .builds/fedora.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
image: fedora/rawhide
packages:
- mesa-libGLU-devel
- mesa-libGLES-devel
- libXrandr-devel
- libXcursor-devel
- libXinerama-devel
- libXi-devel
- libXxf86vm-devel
- alsa-lib-devel
- pkg-config
- go
sources:
- https://github.com/hajimehoshi/ebiten
tasks:
- build: |
cd ebiten
go build . ./audio
19 changes: 19 additions & 0 deletions .builds/ubuntu.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
image: ubuntu/lts
packages:
- libc6-dev
- libglu1-mesa-dev
- libgl1-mesa-dev
- libxcursor-dev
- libxi-dev
- libxinerama-dev
- libxrandr-dev
- libxxf86vm-dev
- libasound2-dev
- pkg-config
- golang
sources:
- https://github.com/hajimehoshi/ebiten
tasks:
- build: |
cd ebiten
go build . ./audio