20 lines
566 B
YAML
20 lines
566 B
YAML
name: Setups Cytoplasm
|
|
description: Setup Cytoplasm out
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Downloading Cytoplasm
|
|
id: download-cyto
|
|
shell: bash
|
|
run: |
|
|
echo Downloading Cytoplasm...
|
|
echo We are on "${{runner.os}}", requested "${{inputs.compiler}}" as CC
|
|
git clone https://git.telodendria.io/Telodendria/Cytoplasm
|
|
- name: Compiling Cytoplasm
|
|
id: compile-cyto
|
|
shell: bash
|
|
run: |
|
|
echo Compiling Cytoplasm...
|
|
cd Cytoplasm
|
|
./configure --no-static && make && make install
|