initial Zig 12 support #79
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [ubuntu-latest, windows-latest, macos-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Setup Android SDK Tools | |
uses: android-actions/[email protected] | |
- name: Setup Zig | |
uses: goto-bus-stop/[email protected] | |
with: | |
version: master | |
- name: Install Android SDK | |
run: | | |
sdkmanager --install "platforms;android-21" | |
sdkmanager --install "build-tools;33.0.0" | |
sdkmanager --install "ndk;25.1.8937393" | |
- name: Build the project | |
run: | | |
zig build keystore install |