2024-01-12 20:13:50 +00:00
|
|
|
name: Compile Cytoplasm
|
|
|
|
run-name: Compile Cytoplasm on ${{ gitea.actor }}
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
2024-01-12 20:59:51 +00:00
|
|
|
"Compile Cytoplasm":
|
2024-01-12 20:54:55 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2024-01-13 01:07:42 +00:00
|
|
|
# TODO: Add more operating systems and architectures.
|
2024-01-12 22:52:41 +00:00
|
|
|
#
|
2024-01-13 00:59:11 +00:00
|
|
|
# Required packages for Alpine: git go nodejs make gcc musl-dev openssl-dev
|
2024-01-12 22:52:41 +00:00
|
|
|
# Required packages for Debian: git golang nodejs make gcc libssl-dev
|
2024-01-13 00:59:11 +00:00
|
|
|
# Required packages for OpenBSD: git go node
|
2024-01-13 01:33:51 +00:00
|
|
|
# Required packages for FreeBSD: git go node
|
2024-01-12 22:52:41 +00:00
|
|
|
#
|
2024-01-13 01:07:42 +00:00
|
|
|
# Note that Git, Go, and Node are only required on runners; they are
|
2024-01-13 01:33:51 +00:00
|
|
|
# not generally required for compiling cytoplasm. Conveniently, this means
|
|
|
|
# that on the BSDs, no additional packages are required to use Cytoplasm!
|
2024-01-13 01:07:42 +00:00
|
|
|
#
|
|
|
|
# To set up a runner, install the packages, then clone
|
|
|
|
# https://git.telodendria.io/Telodendria/act_runner, do a go build,
|
|
|
|
# execute ./act_runner register, then execute ./act_runner daemon.
|
2024-01-12 22:52:41 +00:00
|
|
|
#
|
2024-01-13 00:59:11 +00:00
|
|
|
# For Linux distros, set the tags: linux, <distro>-<version>, <arch>
|
|
|
|
# For BSDs, set the tags: bsd, <os>-<version>, <arch>
|
2024-01-13 01:33:51 +00:00
|
|
|
os: [debian-v12.4, alpine-v3.19, openbsd-v7.4, freebsd-v14.0]
|
2024-01-12 20:54:55 +00:00
|
|
|
arch: [x86, x86_64]
|
2024-01-13 01:07:42 +00:00
|
|
|
exclude:
|
|
|
|
# 32-bit OpenBSD does not behave well in QEMU. Even when using
|
|
|
|
# QEMU to emulate i386, it utilizes 100% of its CPU core and is
|
|
|
|
# still extremely sluggish. Thus, we don't have a working 32-bit
|
|
|
|
# OpenBSD runner, so exclude it from the matrix configuration.
|
|
|
|
- os: openbsd-v7.4
|
|
|
|
arch: x86
|
2024-01-12 20:54:55 +00:00
|
|
|
runs-on: ["${{ matrix.os }}", "${{ matrix.arch }}"]
|
2024-01-12 20:13:50 +00:00
|
|
|
steps:
|
2024-01-12 20:59:51 +00:00
|
|
|
- name: Check out repository
|
2024-01-12 20:13:50 +00:00
|
|
|
uses: actions/checkout@v3
|
2024-01-12 20:59:51 +00:00
|
|
|
- name: Configure Cytoplasm
|
|
|
|
run: ./configure
|
|
|
|
- name: Build Cytoplasm
|
2024-01-12 20:13:50 +00:00
|
|
|
run: make
|