2021-08-11 07:35:05 +00:00
|
|
|
name: ubuntu
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
|
|
|
|
2024-07-16 09:12:53 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2021-08-11 07:35:05 +00:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-11-29 23:26:17 +00:00
|
|
|
- uses: actions/checkout@v4
|
2021-08-11 07:35:05 +00:00
|
|
|
- name: make
|
|
|
|
run: make
|
|
|
|
- name: install check
|
|
|
|
run: sudo apt install check
|
|
|
|
- name: run tests
|
2021-08-11 07:36:53 +00:00
|
|
|
run: make test
|
2021-08-16 12:58:20 +00:00
|
|
|
|
|
|
|
build-android:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-11-29 23:26:17 +00:00
|
|
|
- uses: actions/checkout@v4
|
2021-08-16 12:58:20 +00:00
|
|
|
- uses: nttld/setup-ndk@v1
|
|
|
|
with:
|
|
|
|
ndk-version: r21e
|
|
|
|
- name: make
|
|
|
|
run: make cross-android
|