Require Cytoplasm to be compiled separately.
Compile Telodendria / Compile Telodendria (x86_64, alpine-v3.19) (push) Failing after 5s Details
Compile Telodendria / Compile Telodendria (x86_64, freebsd-v14.0) (push) Failing after 6s Details
Compile Telodendria / Compile Telodendria (x86, alpine-v3.19) (push) Failing after 5s Details
Compile Telodendria / Compile Telodendria (x86, debian-v12.4) (push) Failing after 8s Details
Compile Telodendria / Compile Telodendria (x86_64, debian-v12.4) (push) Failing after 10s Details
Compile Telodendria / Compile Telodendria (x86, netbsd-v9.3) (push) Failing after 10s Details
Compile Telodendria / Compile Telodendria (x86, freebsd-v14.0) (push) Failing after 8s Details
Compile Telodendria / Compile Telodendria (x86_64, netbsd-v9.3) (push) Failing after 12s Details
Compile Telodendria / Compile Telodendria (x86_64, openbsd-v7.4) (push) Failing after 14s Details

Also add the Gitea CI runner jobs.
This commit is contained in:
Jordan Bancino 2024-01-13 20:11:58 -05:00
parent ae0724f01c
commit cd22aea772
2 changed files with 28 additions and 1 deletions

View File

@ -0,0 +1,27 @@
name: Compile Telodendria
run-name: Compile Telodendria on ${{ gitea.actor }}
on: [push]
jobs:
"Compile Telodendria":
strategy:
matrix:
os: [debian-v12.4, alpine-v3.19, openbsd-v7.4, freebsd-v14.0, netbsd-v9.3]
arch: [x86, x86_64]
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
runs-on: ["${{ matrix.os }}", "${{ matrix.arch }}"]
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Configure Telodendria
run: ./configure
- name: Configure & Build Cytoplasm
run: make cytoplasm
- name: Build Telodendria
run: make

2
configure vendored
View File

@ -283,7 +283,7 @@ ${TAB} diff -u -p - "LICENSE.txt" | \\
${TAB} patch "\$\$src" | grep -v "^Hmm"; \\
${TAB}done
${BIN_NAME}: $(if [ -n "${CYTOPLASM}" ]; then echo "cytoplasm"; fi) ${OUT}/bin/${BIN_NAME}
${BIN_NAME}: ${OUT}/bin/${BIN_NAME}
install: ${BIN_NAME}
${TAB}install -D ${OUT}/bin/${BIN_NAME} \$(PREFIX)/bin/${BIN_NAME}