Skip to content

Commit

Permalink
ci: Install ebiten build dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
maxfierke committed May 14, 2024
1 parent 259ff82 commit 043a3c5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install ebiten build dependencies
run: |
sudo apt install gcc libc6-dev libgl1-mesa-dev libxcursor-dev \
libxi-dev libxinerama-dev libxrandr-dev \
libxxf86vm-dev libasound2-dev pkg-config
- uses: actions/checkout@v3
with:
submodules: true
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ jobs:
name: lint
runs-on: ubuntu-latest
steps:
- name: Install ebiten build dependencies
run: |
sudo apt install gcc libc6-dev libgl1-mesa-dev libxcursor-dev \
libxi-dev libxinerama-dev libxrandr-dev \
libxxf86vm-dev libasound2-dev pkg-config
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
Expand Down

0 comments on commit 043a3c5

Please sign in to comment.