[INIT] Add simple action
This commit is contained in:
commit
41f6ee4378
1 changed files with 20 additions and 0 deletions
20
action.yml
Normal file
20
action.yml
Normal 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
|
Loading…
Reference in a new issue