forked from Telodendria/Telodendria
27 lines
738 B
YAML
27 lines
738 B
YAML
name: Compile Telodendria
|
|
run-name: Compile Telodendria on ${{ forgejo.actor }}
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'ma*'
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
|
|
jobs:
|
|
"Compile Telodendria":
|
|
strategy:
|
|
matrix:
|
|
os: [alpine]
|
|
arch: [aarch64]
|
|
runs-on: ["${{ matrix.os }}", "${{ matrix.arch }}"]
|
|
steps:
|
|
- name: Check out repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: true
|
|
- name: Configure Telodendria
|
|
run: ./configure
|
|
- name: Configure & Build Cytoplasm
|
|
run: make cytoplasm
|
|
- name: Build Telodendria
|
|
run: make
|