mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-10 02:39:18 +02:00
fc174d5e37
"The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2."
34 lines
522 B
YAML
34 lines
522 B
YAML
name: ubuntu
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: make
|
|
run: make
|
|
- name: install check
|
|
run: sudo apt install check
|
|
- name: run tests
|
|
run: make test
|
|
|
|
build-android:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: nttld/setup-ndk@v1
|
|
with:
|
|
ndk-version: r21e
|
|
- name: make
|
|
run: make cross-android
|