-
Notifications
You must be signed in to change notification settings - Fork 3
/
action.yml
33 lines (33 loc) · 1.06 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: "Setup Z3"
description: "Set up a specific version of the Z3 theorem prover"
author: "cda-tum"
inputs:
version:
description: "The version of Z3 to install. Defaults to latest."
required: false
default: "latest"
platform:
description: "The platform to install Z3 for (either linux, macOS, or windows). Defaults to host."
required: false
default: "host"
architecture:
description: "The architecture to install Z3 for (either x64 or arm64). Defaults to host."
required: false
default: "host"
add_to_library_path:
description: "Add Z3 to the library path variables, such that it can be used as a static/dynamic library. Defaults to false."
required: false
default: "false"
token:
description: "The token that the action will use to query the GitHub API. Defaults to the repository's GitHub token."
required: false
default: ${{ github.token }}
outputs:
z3-root:
description: "The root directory of the Z3 installation"
runs:
using: "node20"
main: "dist/index.js"
branding:
icon: "package"
color: "blue"