From 41f6ee4378cd2dc798f93b98c07aef2f4f419dae Mon Sep 17 00:00:00 2001 From: Load Accumulator Date: Thu, 2 Nov 2023 20:17:31 +0100 Subject: [PATCH] [INIT] Add simple action --- action.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 action.yml diff --git a/action.yml b/action.yml new file mode 100644 index 0000000..8b7b56c --- /dev/null +++ b/action.yml @@ -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