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 Chromium users how to pin extension in toolbar #2983

Merged
merged 2 commits into from
Jul 2, 2024

Fix layout bug with social share icons on narrow screens

0822745
Select commit
Loading
Failed to load commit list.
Merged

Show Chromium users how to pin extension in toolbar #2983

Fix layout bug with social share icons on narrow screens
0822745
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch required action Jul 2, 2024 in 9m 55s

Build Errored

The build errored, just like the previous build.

Details

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

Jobs and Stages

This build has eight jobs, running in parallel.

Job Python ENV OS State
8034.1 3.8 INFO="lint" Linux errored
8034.2 3.8 INFO="Chrome" BROWSER=google-chrome-stable Linux errored
8034.3 3.8 INFO="Chrome Beta" BROWSER=google-chrome-beta Linux errored
8034.4 3.8 INFO="Firefox" BROWSER=firefox Linux errored
8034.5 3.8 INFO="Firefox Beta" BROWSER=firefox Linux errored
8034.6 3.8 INFO="Firefox Nightly" BROWSER=firefox Linux errored
8034.7 3.8 INFO="Firefox ESR" BROWSER=firefox Linux errored
8034.8 3.8 INFO="Edge Beta" BROWSER=microsoft-edge-beta Linux errored

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Focal)
Python Version 3.8
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "sudo": true,
  "python": [
    "3.8"
  ],
  "jobs": {
    "fast_finish": true,
    "include": [
      {
        "env": [
          {
            "INFO": "\"lint\""
          }
        ],
        "node_js": "node"
      },
      {
        "env": [
          {
            "INFO": "\"Chrome\"",
            "BROWSER": "google-chrome-stable"
          }
        ],
        "addons": {
          "chrome": "stable"
        }
      },
      {
        "env": [
          {
            "INFO": "\"Chrome Beta\"",
            "BROWSER": "google-chrome-beta"
          }
        ],
        "addons": {
          "chrome": "beta"
        }
      },
      {
        "env": [
          {
            "INFO": "\"Firefox\"",
            "BROWSER": "firefox"
          }
        ],
        "addons": {
          "firefox": "latest"
        }
      },
      {
        "env": [
          {
            "INFO": "\"Firefox Beta\"",
            "BROWSER": "firefox"
          }
        ],
        "addons": {
          "firefox": "latest-beta"
        }
      },
      {
        "env": [
          {
            "INFO": "\"Firefox Nightly\"",
            "BROWSER": "firefox"
          }
        ],
        "addons": {
          "firefox": "latest-nightly"
        }
      },
      {
        "env": [
          {
            "INFO": "\"Firefox ESR\"",
            "BROWSER": "firefox"
          }
        ],
        "addons": {
          "firefox": "latest-esr"
        }
      },
      {
        "env": [
          {
            "INFO": "\"Edge Beta\"",
            "BROWSER": "microsoft-edge-beta"
          }
        ],
        "install": [
          "curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg",
          "sudo install -o root -g root -m 644 microsoft.gpg /usr/share/keyrings/",
          "sudo sh -c 'echo \"deb [arch=amd64 signed-by=/usr/share/keyrings/microsoft.gpg] https://packages.microsoft.com/repos/edge stable main\" > /etc/apt/sources.list.d/microsoft-edge-beta.list'",
          "sudo rm microsoft.gpg",
          "sudo apt update",
          "sudo apt install microsoft-edge-beta"
        ]
      }
    ]
  },
  "before_script": [
    "travis_retry ./scripts/setup_travis.sh"
  ],
  "script": [
    ". ./scripts/run_travis.sh"
  ],
  "services": [
    "xvfb"
  ]
}