Skip to content

Commit 3c6279e

Browse files
authored
build(ci): install ebiten dependencies (#8)
1 parent 380ba98 commit 3c6279e

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ jobs:
1717
with:
1818
go-version: "1.24.2"
1919

20+
- name: Install Ebiten dependencies
21+
run: |
22+
sudo apt-get update
23+
sudo apt-get install libasound2-dev libgl1-mesa-dev libxcursor-dev libxi-dev libxinerama-dev libxrandr-dev libxxf86vm-dev
24+
2025
- run: go mod download -x
2126
- run: go build -v ./...
2227

@@ -29,5 +34,10 @@ jobs:
2934
with:
3035
go-version: "1.24.2"
3136

37+
- name: Install Ebiten dependencies
38+
run: |
39+
sudo apt-get update
40+
sudo apt-get install libasound2-dev libgl1-mesa-dev libxcursor-dev libxi-dev libxinerama-dev libxrandr-dev libxxf86vm-dev
41+
3242
- run: go mod download -x
3343
- run: go test -v -race -shuffle=on ./...

0 commit comments

Comments
 (0)