@@ -13,11 +13,11 @@ IMAGE_PREFIX="vizdoom_wheels"
13
13
14
14
# Array in format "<base docker image> <base dockerfile to use> <additional commands to add to the dockerfile after FROM statement>"
15
15
DOCKERFILES_TO_BUILD_AND_RUN=(
16
- " almalinux:9 dnf-based.Dockerfile RUN dnf install -y 'dnf-command(config-manager)' && dnf config-manager --set-enabled crb" # Python 3.9
17
- " fedora:36 dnf-based.Dockerfile" # Python 3.10
18
- " fedora:37 dnf-based.Dockerfile" # Python 3.11
19
- " rockylinux:9 dnf-based.Dockerfile RUN dnf install -y 'dnf-command(config-manager)' && dnf config-manager --set-enabled crb" # Python 3.9
20
- " debian:11 apt-based.Dockerfile ENV LANG C.UTF-8" # Python 3.9
16
+ # "almalinux:9 dnf-based.Dockerfile RUN dnf install -y 'dnf-command(config-manager)' && dnf config-manager --set-enabled crb" # Python 3.9
17
+ # "fedora:36 dnf-based.Dockerfile" # Python 3.10
18
+ # "fedora:37 dnf-based.Dockerfile" # Python 3.11
19
+ # "rockylinux:9 dnf-based.Dockerfile RUN dnf install -y 'dnf-command(config-manager)' && dnf config-manager --set-enabled crb" # Python 3.9
20
+ # "debian:11 apt-based.Dockerfile ENV LANG C.UTF-8" # Python 3.9
21
21
" debian:latest apt-based.Dockerfile ENV LANG C.UTF-8" # Python 3.11
22
22
" ubuntu:20.04 apt-based.Dockerfile" # Python 3.8
23
23
" ubuntu:22.04 apt-based.Dockerfile" # Python 3.10
@@ -28,7 +28,7 @@ DOCKERFILES_TO_BUILD_AND_RUN=(
28
28
# Build wheels using cibuildwheel
29
29
cd $REPO_ROOT
30
30
# export CIBW_BUILD_VERBOSITY=3 # Uncomment to see full build logs
31
- cibuildwheel --platform linux --arch $( uname -m)
31
+ # cibuildwheel --platform linux --arch $(uname -m)
32
32
33
33
function create_dockerfile ( ) {
34
34
local all_args=(" $@ " )
0 commit comments