We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c28fc3b commit 4796df7Copy full SHA for 4796df7
.github/workflows/_build-release.yml
@@ -10,6 +10,10 @@ on:
10
ref:
11
required: false
12
type: string
13
+ include_cairols:
14
+ description: "Include CairoLS in build"
15
+ type: boolean
16
+ default: true
17
include_stwo:
18
description: "Include Stwo in build"
19
type: boolean
@@ -80,7 +84,9 @@ jobs:
80
84
run: echo "CARGO=cross" >> $GITHUB_ENV
81
85
82
86
- name: Build
83
- run: ${{ env.CARGO }} build --release --locked --target ${{ matrix.target }} --workspace --exclude scarb-prove --exclude scarb-verify
87
+ run: |
88
+ ${{ env.CARGO }} build --release --locked --target ${{ matrix.target }} --workspace --exclude scarb-prove \
89
+ --exclude scarb-verify ${{ inputs.include_cairols && '--exclude scarb-cairo-language-server' || ''}}
90
91
- uses: dtolnay/rust-toolchain@master
92
if: inputs.include_stwo
0 commit comments