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

Update Flow.pm #5170

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Update Flow.pm

6482bcc
Select commit
Failed to load commit list.
Open

Update Flow.pm #5170

Update Flow.pm
6482bcc
Select commit
Failed to load commit list.
Travis CI / Travis CI - Pull Request required action Sep 16, 2023 in 40s

Build Errored

The build errored, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #5170 Update Flow.pm.
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
3538.1 UPLOAD_USER=[secure] Linux errored
3538.2 UPLOAD_USER=[secure] Linux errored

Build Configuration

Build Option Setting
Language Generic
Operating System Linux (Trusty)
Build Configuration
{
  "language": "generic",
  "os": [
    "linux"
  ],
  "dist": "trusty",
  "before_install": [
    "sh package/common/travis-decrypt-key",
    "export SLIC3R_GIT_VERSION=$(git rev-parse --short HEAD)"
  ],
  "script": [
    "if [[ \"${TRAVIS_OS_NAME}\" == \"linux\" && \"$TARGET\" == \"main\" ]]; then ./package/linux/travis-build-main.sh || travis_terminate 1; fi",
    "if [[ \"${TRAVIS_OS_NAME}\" == \"linux\" && \"$TARGET\" == \"cpp\"  ]]; then ./package/linux/travis-build-cpp.sh || travis_terminate 1; fi",
    "if [[ \"${TRAVIS_OS_NAME}\" == \"osx\"   && \"$TARGET\" == \"main\" ]]; then ./package/osx/travis-build-main.sh || travis_terminate 1; fi",
    "if [[ \"${TRAVIS_OS_NAME}\" == \"osx\"   && \"$TARGET\" == \"cpp\"  ]]; then ./package/osx/travis-build-cpp.sh || travis_terminate 1; fi"
  ],
  "branches": {
    "only": [
      "master",
      "cppgui",
      "coverity-scan"
    ]
  },
  "addons": {
    "apt": {
      "sources": [
        {
          "name": "ubuntu-toolchain-r-test"
        },
        {
          "sourceline": "deb http://download.opensuse.org/repositories/science:/dlr/xUbuntu_14.04/ /",
          "key_url": "https://download.opensuse.org/repositories/science:dlr/xUbuntu_14.04/Release.key"
        }
      ],
      "packages": [
        "g++-7",
        "gcc-7",
        "g++-8",
        "gcc-8",
        "libgtk2.0-0",
        "libgtk2.0-dev",
        "freeglut3",
        "cmake",
        "wx3.0-headers",
        "libwxgtk3.0-dev",
        "wx-common"
      ]
    },
    "ssh_known_hosts": [
      "dl.slic3r.org"
    ]
  },
  "env": [
    "global=UPLOAD_USER=[secure]=UPLOAD_USER=[secure]"
  ],
  "notifications": {
    "irc": [
      {
        "channels": [
          "chat.freenode.net#slic3r"
        ],
        "on_success": "change",
        "on_failure": "always",
        "use_notice": true
      }
    ]
  },
  "jobs": {
    "include": [
      {
        "os": "linux",
        "env": [
          {
            "TARGET": "main"
          }
        ],
        "cache": {
          "directories": [
            "$HOME/boost_1_63_0",
            "$HOME/perl5",
            "$HOME/wx302",
            "local-lib"
          ]
        },
        "after_success": [
          "if [[ \"${TRAVIS_BRANCH}\" != \"cppgui\" ]]; then source ${HOME}/perl5/perlbrew/etc/bashrc; perlbrew switch slic3r-perl; ./package/linux/travis-deploy-main.sh || travis_terminate 1; fi"
        ]
      },
      {
        "os": "linux",
        "env": [
          {
            "TARGET": "cpp"
          },
          {
            "CACHE": "$HOME/cache"
          }
        ],
        "cache": {
          "apt": true,
          "directories": [
            "$HOME/cache"
          ]
        },
        "after_success": [
          "package/linux/travis-deploy-cpp.sh"
        ]
      }
    ]
  }
}