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

PFW-1542 Fix an issue where print can't be stopped under specific circumstances #4403

Merged
merged 2 commits into from
Sep 25, 2023

Hide menus more consistently when the printer is busy

016db6a
Select commit
Loading
Failed to load commit list.
Merged

PFW-1542 Fix an issue where print can't be stopped under specific circumstances #4403

Hide menus more consistently when the printer is busy
016db6a
Select commit
Loading
Failed to load commit list.
This check has been archived and is scheduled for deletion. Learn more about checks retention
Travis CI / Travis CI - Pull Request succeeded Sep 23, 2023 in 13m 45s

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 #4403 Fix an issue where print can't be stopped under specific circumstances.
Any changes that have been made to the MK3 branch before the build ran are also included.

Jobs and Stages

This build has four jobs, running in four sequential stages.

Stage 1: cmake

This stage passed.

Job OS State
5584.1 Linux passed

Stage 2: lang

This stage passed.

Job OS State
5584.2 Linux passed

Stage 3: legacy

This stage passed.

Job OS State
5584.3 Linux passed

Stage 4: tests

This stage passed.

Job OS State
5584.4 Linux passed

Build Configuration

Build Option Setting
Language Shell
Operating System Linux (Focal)
Build Configuration
{
  "language": "shell",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "cache": {
    "directories": [
      ".dependencies/",
      "./../PF-build-env/"
    ]
  },
  "before_install": [
    "sudo apt-get install -y python3-polib python3-pyelftools python3-regex",
    "mkdir -p .dependencies/python3",
    "ln -sf /usr/bin/python3 .dependencies/python3/python3",
    "PATH=$PWD/.dependencies/python3:$PATH",
    "./utils/bootstrap.py",
    "PATH=$(./utils/bootstrap.py --print-dependency-directory \"cmake\")/bin:$PATH",
    "PATH=$(./utils/bootstrap.py --print-dependency-directory \"ninja\"):$PATH",
    "sudo iptables -P INPUT DROP",
    "sudo iptables -P FORWARD DROP",
    "sudo iptables -P OUTPUT ACCEPT",
    "sudo iptables -A INPUT -i lo -j ACCEPT",
    "sudo iptables -A OUTPUT -o lo -j ACCEPT",
    "sudo iptables -A INPUT -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT"
  ],
  "jobs": {
    "include": [
      {
        "stage": "legacy",
        "script": [
          "./.github/travis/legacy-build.sh"
        ]
      },
      {
        "stage": "cmake",
        "script": [
          "./.github/travis/cmake-build.sh"
        ]
      },
      {
        "stage": "tests",
        "script": [
          "./.github/travis/cmake-test.sh"
        ]
      },
      {
        "stage": "lang",
        "script": [
          "./.github/travis/cmake-lang.sh"
        ]
      }
    ]
  },
  "stages": [
    {
      "name": "cmake"
    },
    {
      "name": "lang"
    },
    {
      "name": "legacy"
    },
    {
      "name": "tests"
    }
  ]
}