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

Currency: Created build script and build_info.json for patsy #5275

Open
wants to merge 2 commits into
base: python-ecosystem
Choose a base branch
from

Update patsy_ubi_9.3.sh

5ad14ef
Select commit
Loading
Failed to load commit list.
Open

Currency: Created build script and build_info.json for patsy #5275

Update patsy_ubi_9.3.sh
5ad14ef
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Jan 15, 2025 in 31m 43s

Build Passed

The build passed. This is a change from the previous build, which failed.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #5275 Currency: Created build script and build_info.json for patsy.
Any changes that have been made to the python-ecosystem branch before the build ran are also included.

Jobs and Stages

This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.

Build Configuration

Build Option Setting
Language Shell
Operating System Linux (Focal)
Build Configuration
{
  "language": "shell",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "if": "type IN (api, pull_request)",
  "arch": [
    "ppc64le"
  ],
  "services": [
    "docker"
  ],
  "before_install": [
    "docker pull registry.access.redhat.com/ubi9/ubi:9.3"
  ],
  "script": [
    "sudo apt update -y && sudo apt-get install file -y",
    "pip3 install --force-reinstall -v \"requests==2.31.0\"",
    "pip3 install --upgrade docker",
    "python3 script/validate_builds.py $TRAVIS_PULL_REQUEST > build_log &",
    "SCRIPT_PID=$!;while ps -p $SCRIPT_PID > /dev/null;do echo \"$SCRIPT_PID is running\"; sleep 300; done; wait $SCRIPT_PID; my_pid_status=$?;",
    "build_size=$(stat -c %s build_log);[ $build_size -lt 1800000 ] && cat build_log || { echo \"xxxxxxxxxxxxxxx Build log size too large, so printing last 1.7MB xxxxxxxxxxxxxxx\"; tail -c 1700000 build_log; }; travis_terminate $my_pid_status"
  ]
}