From 8717dabd463a66a4d1a321bd39755f8c78e1efb8 Mon Sep 17 00:00:00 2001 From: LoaD Accumulator Date: Thu, 2 Nov 2023 19:29:38 +0100 Subject: [PATCH] trying --- action.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 action.yml diff --git a/action.yml b/action.yml new file mode 100644 index 0000000..ea500c3 --- /dev/null +++ b/action.yml @@ -0,0 +1,22 @@ +name: Setup a basic build environment +description: Setup a basic build environment with a proper SSL library + +inputs: + compiler: + description: Compiler used for setting up everything + required: false + default: gcc + ssl: + description: SSL library used for Cytoplasm later on + required: false + default: openssl + +outputs: + compiler: + description: Compiler binary + value: '${{ steps.install.outputs.compiler }}' + +runs: + - run: 'echo We are on "${{runner.os}}", requested "${{inputs.compiler}}" as CC' + - run: 'echo hi && setup "${{ runner.os }}" "${{inputs.compiler}}" "${{inputs.ssl}}"' + shell: bash