Currently there has been a growth in PR for documentation changes, but it's
being slowed by the test run failures, we can relieve the issue, with some
small changes.

either not run the test if the git can't find a code change in files
git diff --name-only HEAD master | grep -v site2

or change the jenkins job to only look at specific folders for changes
steps to guard against
unnecessary test runs.

git diff --name-only HEAD master | grep -v site2stages {
    stage('CI Run') {
        when { changeset "src/*"}
        steps {
            sh "make build-nginx"
            sh "make start-nginx"
        }
    }

We only to continue to improve test stability in parallel.

Reply via email to