We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b38a0c5 commit 2d40cc3Copy full SHA for 2d40cc3
1 file changed
.github/workflows/docker-bases.yml
@@ -14,18 +14,21 @@ on:
14
- "/docker/Dockerfile.nogil"
15
workflow_dispatch:
16
inputs:
17
+ nogil:
18
+ type: boolean
19
+ default: true
20
cpu:
21
type: boolean
- default: false
22
23
nvidia:
24
25
26
amd:
27
28
29
intel:
30
31
32
33
tags:
34
description: "Build compiler bases"
@@ -40,6 +43,7 @@ jobs:
40
43
deploy-nogil-base:
41
44
name: "python-nogil-base"
42
45
runs-on: ubuntu-latest
46
+ if: inputs.nogil
47
env:
48
DOCKER_BUILDKIT: "1"
49
@@ -64,7 +68,6 @@ jobs:
64
68
65
69
- name: Build free-threaded Python base
66
70
uses: docker/build-push-action@v6
67
- if: ${{ matrix.disable-gil }}
71
with:
72
context: .
73
file: "./docker/Dockerfile.nogil"
0 commit comments