Skip to content

Commit

Permalink
Revert commenting some lines in the build tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mwydmuch committed Dec 12, 2023
1 parent f0dd95f commit a2eed0e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions tests/build_test_cibuildwheel_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ IMAGE_PREFIX="vizdoom_wheels"

# Array in format "<base docker image> <base dockerfile to use> <additional commands to add to the dockerfile after FROM statement>"
DOCKERFILES_TO_BUILD_AND_RUN=(
#"almalinux:9 dnf-based.Dockerfile RUN dnf install -y 'dnf-command(config-manager)' && dnf config-manager --set-enabled crb" # Python 3.9
#"fedora:36 dnf-based.Dockerfile" # Python 3.10
#"fedora:37 dnf-based.Dockerfile" # Python 3.11
#"rockylinux:9 dnf-based.Dockerfile RUN dnf install -y 'dnf-command(config-manager)' && dnf config-manager --set-enabled crb" # Python 3.9
#"debian:11 apt-based.Dockerfile ENV LANG C.UTF-8" # Python 3.9
"almalinux:9 dnf-based.Dockerfile RUN dnf install -y 'dnf-command(config-manager)' && dnf config-manager --set-enabled crb" # Python 3.9
"fedora:36 dnf-based.Dockerfile" # Python 3.10
"fedora:37 dnf-based.Dockerfile" # Python 3.11
"rockylinux:9 dnf-based.Dockerfile RUN dnf install -y 'dnf-command(config-manager)' && dnf config-manager --set-enabled crb" # Python 3.9
"debian:11 apt-based.Dockerfile ENV LANG C.UTF-8" # Python 3.9
"debian:latest apt-based.Dockerfile ENV LANG C.UTF-8" # Python 3.11
"ubuntu:20.04 apt-based.Dockerfile" # Python 3.8
"ubuntu:22.04 apt-based.Dockerfile" # Python 3.10
Expand All @@ -28,7 +28,7 @@ DOCKERFILES_TO_BUILD_AND_RUN=(
# Build wheels using cibuildwheel
cd $REPO_ROOT
#export CIBW_BUILD_VERBOSITY=3 # Uncomment to see full build logs
#cibuildwheel --platform linux --arch $(uname -m)
cibuildwheel --platform linux --arch $(uname -m)

function create_dockerfile ( ) {
local all_args=("$@")
Expand Down
6 changes: 3 additions & 3 deletions tests/build_test_local_linux_builds.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ IMAGE_PREFIX="vizdoom_local"
# Generate and run dockerfiles
# Array in format "<base docker image> <base dockerfile to use> <additional commands to add to the dockerfile after FROM statement>"
DOCKERFILES_TO_BUILD_AND_RUN=(
#"almalinux:9 dnf-based.Dockerfile RUN dnf install -y 'dnf-command(config-manager)' && dnf config-manager --set-enabled crb"
#"tgagor/centos:stream9 dnf-based.Dockerfile RUN dnf install -y 'dnf-command(config-manager)' && dnf config-manager --set-enabled crb"
#"fedora:36 dnf-based.Dockerfile"
"almalinux:9 dnf-based.Dockerfile RUN dnf install -y 'dnf-command(config-manager)' && dnf config-manager --set-enabled crb"
"tgagor/centos:stream9 dnf-based.Dockerfile RUN dnf install -y 'dnf-command(config-manager)' && dnf config-manager --set-enabled crb"
"fedora:36 dnf-based.Dockerfile"
"fedora:37 dnf-based.Dockerfile"
"rockylinux:9 dnf-based.Dockerfile RUN dnf install -y 'dnf-command(config-manager)' && dnf config-manager --set-enabled crb"
"debian:11 apt-based.Dockerfile ENV LANG C.UTF-8"
Expand Down

0 comments on commit a2eed0e

Please sign in to comment.