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-12 20:59:51 +00:00
|
|
|
# TODO: Add more operating systems and architectures
|
2024-01-12 20:54:55 +00:00
|
|
|
os: [alpine-v3.19]
|
|
|
|
arch: [x86, x86_64]
|
|
|
|
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
|