Skip to content

Fix CI/CD badge

47e67a9
Select commit
Loading
Failed to load commit list.
Merged

Fix CI/CD badge #265

Fix CI/CD badge
47e67a9
Select commit
Loading
Failed to load commit list.
This check has been archived and is scheduled for deletion. Learn more about checks retention
Travis CI / Travis CI - Branch succeeded Aug 2, 2024 in 25m 11s

Build Passed

The build passed.

Details

This is a normal build for the fix_badge branch. You should be able to reproduce it by checking out the branch locally.

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 Python
Operating System Linux (Xenial)
Python Version 3.8
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "python": [
    "3.8"
  ],
  "before_install": [
    "if ! [ -f ./src/GRCh37.tar.gz ]; then wget ftp://alexandrovlab-ftp.ucsd.edu/pub/tools/SigProfilerMatrixGenerator/GRCh37.tar.gz -P ./src/; fi"
  ],
  "install": [
    "pip install ."
  ],
  "cache": {
    "directories": [
      "$TRAVIS_BUILD_DIR/src/"
    ]
  },
  "before_script": [
    "python3 install_genome.py $TRAVIS_BUILD_DIR/src/"
  ],
  "script": [
    "python3 test.py"
  ]
}