Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: overwriting wheel on windows shouldn't break #1464

Merged
merged 1 commit into from
Apr 17, 2023

fix overwriting wheel on windows

1805faf
Select commit
Failed to load commit list.
Merged

fix: overwriting wheel on windows shouldn't break #1464

fix overwriting wheel on windows
1805faf
Select commit
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Apr 8, 2023 in 2h 24m 30s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #1464 fix overwriting wheel on windows.
Any changes that have been made to the main branch before the build ran are also included.

Jobs and Stages

This build has five jobs, running in parallel.

Job Python ENV OS State Notes
4650.1 Linux | x86_64 + i686 | Python 3.7 3.7 PYTHON=python Linux passed
4650.2 Linux | arm64 | Python 3.7 3.7 PYTHON=python Linux passed
4650.3 Windows | x86_64 | Python 3.7 PYTHON=C:\\Python37\\python windows passed
4650.4 Linux | s390x | Python 3.7 3.7 PYTHON=python Linux passed
4650.5 Linux | ppc64le | Python 3.7 3.7 PYTHON=python Linux passed This job is allowed to fail.

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Focal)
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "branches": {
    "only": [
      "main"
    ]
  },
  "jobs": {
    "include": [
      {
        "name": "Linux | x86_64 + i686 | Python 3.7",
        "python": "3.7",
        "services": [
          "docker"
        ],
        "env": [
          {
            "PYTHON": "python"
          }
        ]
      },
      {
        "name": "Linux | arm64 | Python 3.7",
        "python": "3.7",
        "services": [
          "docker"
        ],
        "arch": "arm64-graviton2",
        "group": "edge",
        "virt": "vm",
        "env": [
          {
            "PYTHON": "python"
          }
        ]
      },
      {
        "name": "Linux | ppc64le | Python 3.7",
        "python": "3.7",
        "services": [
          "docker"
        ],
        "arch": "ppc64le",
        "allow_failure": true,
        "env": [
          {
            "PYTHON": "python"
          },
          {
            "PYTEST_ADDOPTS": "'-k \"not test_manylinuxXXXX_only\"'"
          }
        ]
      },
      {
        "name": "Windows | x86_64 | Python 3.7",
        "os": "windows",
        "language": "shell",
        "before_install": [
          "choco upgrade python3 -y --version 3.7.9 --limit-output",
          "powershell \"md C:\\temp\\certs; CertUtil -generateSSTFromWU C:\\temp\\certs\\RootStore.sst; Get-ChildItem -Path C:\\\\temp\\certs\\Rootstore.sst | Import-Certificate -CertStoreLocation Cert:\\\\LocalMachine\\\\Root\\\\ | out-null\""
        ],
        "env": [
          {
            "PYTHON": "C:\\\\Python37\\\\python"
          }
        ]
      },
      {
        "name": "Linux | s390x | Python 3.7",
        "python": "3.7",
        "services": [
          "docker"
        ],
        "arch": "s390x",
        "env": [
          {
            "PYTHON": "python"
          }
        ]
      }
    ]
  },
  "install": [
    "$PYTHON -m pip install -U pip",
    "$PYTHON -m pip install -e \".[dev]\" pytest-custom-exit-code"
  ],
  "script": [
    "# travis_wait disable the output while waiting\n# use the same kind of tricks as in multibuild\n(while true; do echo \"travis_keep_alive\"; sleep 300; done) &\nSPINNER_PID=$!\ndisown\n$PYTHON ./bin/run_tests.py\nkill -9 ${SPINNER_PID}"
  ]
}