Skip to content

Commit 266d8d3

Browse files
CI: Make use-cache and macosx-deployment-target required
1 parent bd0dd0c commit 266d8d3

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/build-wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ on:
2222
type: string
2323
macosx-deployment-target:
2424
description: 'Used to set the MACOSX_DEPLOYMENT_TARGET env variable. Only used on Mac.'
25-
required: false
25+
required: true
2626
default: "11.0"
2727
type: string
2828
use-cache:
2929
description: 'Enable or disable ccache restoration and saving'
3030
type: boolean
3131
default: true
32-
required: false
32+
required: true
3333
dry-run:
3434
description: 'Creates a dummy wheel instead of building slicer core'
3535
type: boolean

.github/workflows/cd.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
build-targets: ${{ matrix.build-targets }}
2727
platform-tag: ${{ matrix.platform-tag }}
2828
macosx-deployment-target: "11.0"
29+
use-cache: true
2930

3031
upload-github:
3132
name: Push SlicerCore release on github

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,4 @@ jobs:
2828
build-targets: ${{ matrix.build-targets }}
2929
platform-tag: ${{ matrix.platform-tag }}
3030
macosx-deployment-target: "11.0"
31+
use-cache: true

0 commit comments

Comments
 (0)