2023-11-02 16:24:55 +00:00
|
|
|
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:
|
2023-11-02 17:19:05 +00:00
|
|
|
- run: 'echo hi && setup "${{ runner.os }}" "${{inputs.compiler}}" "${{inputs.ssl}}"'
|
2023-11-02 16:24:55 +00:00
|
|
|
shell: bash
|