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

BlueMenta-dark #310

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

Corrected color value on line 91

c50e398
Select commit
Loading
Failed to load commit list.
Open

BlueMenta-dark #310

Corrected color value on line 91
c50e398
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Sep 11, 2024 in 5m 3s

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 #310 BlueMenta-dark.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has two jobs, running in parallel.

Job ENV OS State
322.1 DISTRO="debian:testing" Linux passed
322.2 DISTRO="fedora:latest" Linux passed

Build Configuration

Build Option Setting
Language Shell
Operating System Linux (Jammy)
Build Configuration
{
  "language": "shell",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "services": [
    "docker"
  ],
  "addons": {
    "apt": {
      "packages": [
        "python3-pip",
        "python3-setuptools"
      ]
    }
  },
  "before_install": [
    "curl -Ls -o docker-build https://github.com/mate-desktop/mate-dev-scripts/raw/master/travis/docker-build",
    "chmod +x docker-build"
  ],
  "install": [
    "pip3 install PyGithub",
    "sudo apt-get install -y python3-pip python3-setuptools",
    "sudo pip3 install --upgrade pip",
    "sudo pip install PyGithub",
    "./docker-build --name ${DISTRO} --config .build.yml --install"
  ],
  "script": [
    "./docker-build --name ${DISTRO} --verbose --config .build.yml --build autotools"
  ],
  "notifications": {
    "irc": [
      {
        "if": "(tag OR branch = master) AND repo = \"mate-desktop/mate-themes\"",
        "channels": [
          "irc.freenode.org#mate-dev"
        ],
        "template": [
          "[%{repository_name}] %{author}: %{commit_subject}",
          "[%{branch}] %{commit} %{message} %{build_url}"
        ],
        "on_success": "never",
        "on_failure": "always"
      }
    ]
  },
  "deploy": [
    {
      "provider": "script",
      "edge": true,
      "script": "./docker-build --verbose --config .build.yml --release github",
      "on": {
        "tags": true,
        "condition": [
          "${TRAVIS_TAG} =~ ^v.*$ && ${DISTRO} =~ ^fedora.*$"
        ]
      }
    }
  ],
  "env": [
    "jobs={:DISTRO=>\"\\\"debian:testing\\\"\"}={:DISTRO=>\"\\\"fedora:latest\\\"\"}"
  ]
}