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

Show upload error #30

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

debug

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

Show upload error #30

debug
5ec6762
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Jan 30, 2025 in 3m 22s

Build Passed

The build passed, just like the previous build.

Details

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

Jobs and Stages

This build has four jobs, running in parallel.

Job Node.js ENV OS State
248.1 10 BUILD=0 BROWSER=Chrome Linux passed
248.2 10 BUILD=1 BROWSER=Chrome Linux passed
248.3 10 BUILD=0 BROWSER=Firefox MOZ_HEADLESS=1 Linux passed
248.4 10 BUILD=1 BROWSER=Firefox MOZ_HEADLESS=1 Linux passed

Build Configuration

Build Option Setting
Language Node.js
Operating System Linux (Trusty)
Node.js Version 10
Build Configuration
{
  "language": "node_js",
  "os": [
    "linux"
  ],
  "dist": "trusty",
  "sudo": true,
  "node_js": [
    "10"
  ],
  "env": [
    "jobs={:BUILD=>\"0\", :BROWSER=>\"Chrome\"}={:BUILD=>\"1\", :BROWSER=>\"Chrome\"}={:BUILD=>\"0\", :BROWSER=>\"Firefox\", :MOZ_HEADLESS=>\"1\"}={:BUILD=>\"1\", :BROWSER=>\"Firefox\", :MOZ_HEADLESS=>\"1\"}"
  ],
  "addons": {
    "firefox": "latest",
    "chrome": "stable"
  },
  "before_script": [
    "npm install benderjs-cli -g",
    "export DISPLAY=:99.0",
    "sh -e /etc/init.d/xvfb start",
    "sleep 3",
    "BUILD_PATH=0",
    "if [ \"$BUILD\" = \"1\" ] && ( [ \"$TRAVIS_BRANCH\" = \"master\" ] || [ \"$TRAVIS_BRANCH\" = \"major\" ] ); then sh -e ./dev/travis/build.sh $TRAVIS_BRANCH && BUILD_PATH=\"$(sh -e ./dev/travis/buildpath.sh)\"; fi"
  ],
  "script": [
    "if [ \"$BUILD\" = \"0\" ]; then bender run -c bender.ci.js; fi",
    "if [ \"$BUILD\" = \"1\" ] && [ \"$BUILD_PATH\" != \"0\" ]; then cd $BUILD_PATH && bender run -c bender.ci.js; fi"
  ]
}