Skip to content

Create build.yml

Create build.yml #2

Workflow file for this run

name: build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: ravinderjangra/[email protected]
with:
# Platform arch
arch: armeabi-v7a arm64-v8a
# Path to use for NDK toolchain
install-location: .
# Force install toolchain
add-to-path: true # optional, default is true
- uses: actions/checkout@v3
- name: configure
run: ./configure
- name: make
run: make
- name: make check
run: make check
- name: make distcheck
run: make distcheck