Add a simple CI workflow for compiling Cytoplasm. #27

Merged
jordan merged 12 commits from ci into master 2024-01-13 16:08:45 +00:00
Showing only changes of commit e81d7e1911 - Show all commits

View file

@ -8,14 +8,17 @@ jobs:
matrix:
# TODO: Add more operating systems and architectures
#
# Required packages for Alpine: git go nodejs make gcc openssl-dev
# Required packages for Alpine: git go nodejs make gcc musl-dev openssl-dev
# Required packages for Debian: git golang nodejs make gcc libssl-dev
# Required packages for OpenBSD: git go node
# (Note: OpenBSD does not have a 32-bit runner because it doesn't do well in QEMU.)
#
# Then clone https://git.telodendria.io/Telodendria/act_runner,
# do a go build, ./act_runner register, then ./act_runner daemon.
#
## For Linux distros, set the tags: linux, <distro>-<version>, <arch>
os: [debian-v12.4, alpine-v3.19]
# For Linux distros, set the tags: linux, <distro>-<version>, <arch>
# For BSDs, set the tags: bsd, <os>-<version>, <arch>
os: [debian-v12.4, alpine-v3.19, openbsd-v7.4]
arch: [x86, x86_64]
runs-on: ["${{ matrix.os }}", "${{ matrix.arch }}"]
steps: