Skip to content

Add files via upload

fcf8f51
Select commit
Loading
Failed to load commit list.
Open

Add files via upload #870

Add files via upload
fcf8f51
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Apr 22, 2026 in 6m 8s

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 #870 Add files via upload.
Any changes that have been made to the main 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 Ruby
Operating System Linux (Noble)
Ruby Version 3.1
Build Configuration
{
  "language": "ruby",
  "os": [
    "linux"
  ],
  "dist": "noble",
  "rvm": [
    "3.1"
  ],
  "env": [
    "global={:NOKOGIRI_USE_SYSTEM_LIBRARIES=>\"true\"}={:NODE_VERSION=>\"v14\"}"
  ],
  "before_install": [
    "gem install bundler:2.3.9",
    "rvm use 3.1",
    "gem install dpl"
  ],
  "script": [
    "set -e",
    "$TRAVIS_BUILD_DIR/travis/install_gcloud.sh",
    "sudo apt-get install -y python3-pip jupyter jupyter-nbconvert",
    "nvm install $NODE_VERSION",
    "npm install -g firebase-tools@11.30.0",
    "./_tests/travis-checks --quick"
  ],
  "deploy": [
    {
      "provider": "script",
      "edge": true,
      "cleanup": false,
      "script": "$TRAVIS_BUILD_DIR/travis/activate_service_account.sh SERVICE_ACCOUNT_mlab_sandbox && gsutil -h 'Cache-Control:no-store' -m cp -r $TRAVIS_BUILD_DIR/_site/* gs://website.mlab-sandbox.measurementlab.net/",
      "on": {
        "repo": "m-lab/website",
        "all_branches": true,
        "condition": [
          "$TRAVIS_BRANCH == sandbox-* && $TRAVIS_EVENT_TYPE == push"
        ]
      }
    },
    {
      "provider": "script",
      "edge": true,
      "cleanup": false,
      "script": "$TRAVIS_BUILD_DIR/travis/activate_service_account.sh SERVICE_ACCOUNT_mlab_staging && gsutil -h 'Cache-Control:no-store' -m cp -r $TRAVIS_BUILD_DIR/_site/* gs://website.mlab-staging.measurementlab.net/",
      "on": {
        "repo": "m-lab/website",
        "all_branches": true,
        "condition": [
          "$TRAVIS_BRANCH == main && $TRAVIS_EVENT_TYPE == push"
        ]
      }
    },
    {
      "provider": "script",
      "edge": true,
      "cleanup": false,
      "script": "$TRAVIS_BUILD_DIR/firebase-deploy.sh",
      "on": {
        "repo": "m-lab/website",
        "tags": true
      }
    }
  ]
}