From 3b4352f5338dd9003e71bfce546f1c631ff7288a Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Sun, 11 Apr 2021 00:04:09 +0900 Subject: [PATCH] Add iOS build on GitHub Actions (#1567) Closes #1397 --- .github/workflows/test.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3912fd103..28636db5b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -80,3 +80,8 @@ jobs: run: | go get github.com/hajimehoshi/go-inovation go run ./cmd/ebitenmobile bind -target android -javapkg com.hajimehoshi.goinovation -o inovation.aar -v github.com/hajimehoshi/go-inovation/mobile + + - name: ebitenmobile bind (iOS) + if: ${{ matrix.os == 'macos-latest' }} + run: | + go run ./cmd/ebitenmobile bind -target ios -o Inovation.framework -v github.com/hajimehoshi/go-inovation/mobile