[INIT] Add simple action

This commit is contained in:
lda 2023-11-02 20:17:31 +01:00
commit 41f6ee4378
Signed by: lda
GPG key ID: 6898757653ABE3E6

20
action.yml Normal file
View file

@ -0,0 +1,20 @@
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