trying
This commit is contained in:
parent
119acf20cc
commit
8717dabd46
1 changed files with 22 additions and 0 deletions
22
action.yml
Normal file
22
action.yml
Normal file
|
@ -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
|
Loading…
Reference in a new issue