Jordan Bancino
7830b91603
Some checks failed
Compile Cytoplasm / Compile Cytoplasm (x86_64, alpine-v3.19) (push) Failing after 8s
Compile Cytoplasm / Compile Cytoplasm (x86, alpine-v3.19) (push) Failing after 10s
Compile Cytoplasm / Compile Cytoplasm (x86, debian-v12.4) (push) Failing after 24s
Compile Cytoplasm / Compile Cytoplasm (x86_64, debian-v12.4) (push) Failing after 28s
27 lines
1 KiB
YAML
27 lines
1 KiB
YAML
name: Compile Cytoplasm
|
|
run-name: Compile Cytoplasm on ${{ gitea.actor }}
|
|
on: [push]
|
|
|
|
jobs:
|
|
"Compile Cytoplasm":
|
|
strategy:
|
|
matrix:
|
|
# TODO: Add more operating systems and architectures
|
|
#
|
|
# Required packages for Alpine: git go nodejs make gcc openssl-dev
|
|
# Required packages for Debian: git golang nodejs make gcc libssl-dev
|
|
#
|
|
# 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]
|
|
arch: [x86, x86_64]
|
|
runs-on: ["${{ matrix.os }}", "${{ matrix.arch }}"]
|
|
steps:
|
|
- name: Check out repository
|
|
uses: actions/checkout@v3
|
|
- name: Configure Cytoplasm
|
|
run: ./configure
|
|
- name: Build Cytoplasm
|
|
run: make
|