Skip to content
Snippets Groups Projects
Commit 5e9cc6bd authored by Corné Lukken's avatar Corné Lukken
Browse files

Remove kebab

parent 7c73e2c1
No related branches found
No related tags found
1 merge request!10Add pre commit improve tox setup
Pipeline #110621 passed
Pipeline: Python Binary Wheel Package

#110623

    Pipeline: Python Binary Wheel Package

    #110622

      ...@@ -94,20 +94,12 @@ package_files: ...@@ -94,20 +94,12 @@ package_files:
      stage: package stage: package
      tags: tags:
      - dind - dind
      variables:
      DOCKER_TLS_CERTDIR: "/certs"
      artifacts: artifacts:
      expire_in: 1w expire_in: 1w
      paths: paths:
      - dist/* - dist/*
      script: script:
      - unset DOCKER_TLS_VERIFY
      - env | grep DOCKER
      - source scripts/setup-docker-host.sh - source scripts/setup-docker-host.sh
      - env | grep DOCKER
      - echo $PATH
      - which git
      - which python
      - tox -e build-ci-linux - tox -e build-ci-linux
      package_docs: package_docs:
      ......
      ...@@ -35,14 +35,6 @@ write_to = "src/{{cookiecutter.project_slug}}/_version.py" ...@@ -35,14 +35,6 @@ write_to = "src/{{cookiecutter.project_slug}}/_version.py"
      [tool.cibuildwheel] [tool.cibuildwheel]
      skip = "*-win32 *-manylinux_i686 pp*" skip = "*-win32 *-manylinux_i686 pp*"
      build-verbosity = 1 build-verbosity = 1
      manylinux-x86_64-image = "manylinux2014"
      manylinux-i686-image = "manylinux2014"
      # Before Python 3.10, manylinux2010 is the most compatible
      [[tool.cibuildwheel.overrides]]
      select = "cp3?-*"
      manylinux-x86_64-image = "manylinux2010"
      manylinux-i686-image = "manylinux2010"
      [tool.cibuildwheel.macos] [tool.cibuildwheel.macos]
      archs = ["x86_64", "universal2", "arm64"] archs = ["x86_64", "universal2", "arm64"]
      ...@@ -132,9 +124,8 @@ commands = [["python", "-m", "build"]] ...@@ -132,9 +124,8 @@ commands = [["python", "-m", "build"]]
      [tool.tox.env.build-ci-linux] [tool.tox.env.build-ci-linux]
      package = "wheel" package = "wheel"
      deps = ["-r{toxinidir}/build-requirements.txt"] deps = ["-r{toxinidir}/build-requirements.txt"]
      allowlist_externals = ["docker", "which", "{work_dir}/.tox/bin/python", "rm"] allowlist_externals = ["docker"]
      pass_env = ["DOCKER_HOST", "DOCKER_TLS_VERIFY", "DOCKER_CERT_PATH"] pass_env = ["DOCKER_HOST", "DOCKER_TLS_VERIFY", "DOCKER_CERT_PATH"]
      commands = [ commands = [
      ["rm", "-rf", "build"],
      ["python", "-m", "cibuildwheel", "--platform", "linux", "--output-dir", "dist"] ["python", "-m", "cibuildwheel", "--platform", "linux", "--output-dir", "dist"]
      ] ]
      0% Loading or .
      You are about to add 0 people to the discussion. Proceed with caution.
      Please register or to comment