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

lxd watchdog #677

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

ping limit to 5s

b35e79a
Select commit
Loading
Failed to load commit list.
Open

lxd watchdog #677

ping limit to 5s
b35e79a
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Dec 12, 2024 in 6m 29s

Build Passed

The build passed. This is a change from the previous build, which failed.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #677 lxd watchdog.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has four jobs, running in parallel.

Stage 1: test

This stage passed.

Job Go ENV OS State
4620.1 lint 1.22.x AMQP_URI="amqp://" Linux passed
4620.2 linux 1.22.x AMQP_URI="amqp://" Linux passed
4620.3 crossbuild 1.22.x AMQP_URI="amqp://" Linux passed
4620.4 http-job-test 1.22.x AMQP_URI="amqp://" Linux passed

Build Configuration

Build Option Setting
Language Go
Operating System Linux (Focal)
Go Version 1.22.x
Build Configuration
{
  "language": "go",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "go": [
    "1.22.x"
  ],
  "git": {
    "depth": 10
  },
  "branches": {
    "only": [
      "master"
    ]
  },
  "cache": {
    "directories": [
      "vendor",
      "$HOME/.cache/go-build",
      "$HOME/gopath/bin",
      "$HOME/gopath/pkg/mod"
    ]
  },
  "services": [
    "rabbitmq",
    "docker",
    "redis"
  ],
  "env": [
    "global={:AMQP_URI=>\"\\\"amqp://\\\"\"}={:GOPATH=>\"\\\"$HOME/gopath\\\"\"}={:PATH=>\"\\\"bin:$HOME/gopath/bin:$HOME/bin:$PATH\\\"\"}={:CHECKOUT_ROOT=>\"\\\"$HOME/gopath/src/github.com/travis-ci/worker\\\"\"}={:GO15VENDOREXPERIMENT=>\"'1'\"}={:REDIS_URL=>\"\\\"redis://\\\"\"}"
  ],
  "stages": [
    {
      "name": "test",
      "if": "(type = push OR type = pull_request) AND branch = master"
    }
  ],
  "before_cache": [
    "make clean"
  ],
  "jobs": {
    "include": [
      {
        "stage": "test",
        "name": "lint",
        "script": [
          "make deps",
          "make lintall"
        ]
      },
      {
        "stage": "test",
        "name": "linux",
        "script": [
          "make deps",
          "GO111MODULE=on make build",
          "mkdir -p build/linux/amd64",
          "cp ${GOPATH%%:*}/bin/travis-worker build/linux/amd64",
          "make test-no-cover",
          "make test-cover",
          "make smoke"
        ],
        "addons": {
          "apt": {
            "packages": [
              "rabbitmq-server"
            ]
          },
          "artifacts": {
            "paths": [
              "./build/linux/amd64/travis-worker"
            ],
            "target_paths": [
              "travis-ci/worker/$TRAVIS_BUILD_NUMBER/$TRAVIS_JOB_NUMBER",
              "travis-ci/worker/$(git describe --always --dirty --tags)",
              "travis-ci/worker/$TRAVIS_BRANCH"
            ]
          }
        }
      },
      {
        "stage": "test",
        "name": "crossbuild",
        "script": [
          "go mod vendor",
          "GO111MODULE=on make build/darwin/amd64/travis-worker"
        ],
        "addons": {
          "artifacts": {
            "paths": [
              "./build/darwin/amd64/travis-worker"
            ],
            "target_paths": [
              "travis-ci/worker/$TRAVIS_BUILD_NUMBER/$TRAVIS_JOB_NUMBER",
              "travis-ci/worker/$(git describe --always --dirty --tags)",
              "travis-ci/worker/$TRAVIS_BRANCH"
            ]
          }
        }
      },
      {
        "stage": "test",
        "name": "docker",
        "if": "type != 'pull_request' && env(VAULT_PASS) is present && env(VAULT_USERNAME) is present",
        "script": [
          "vault login --no-print -method=userpass username=$VAULT_USERNAME password=$VAULT_PASS",
          "vault kv get -field=secret gcp/gcr-sa-key > /tmp/gcr_key.json;",
          "gcloud -q auth activate-service-account --key-file /tmp/gcr_key.json;",
          "gcloud -q config set project ${GCE_PROJECT}",
          "gcloud auth configure-docker",
          "make docker-build",
          "make docker-push"
        ],
        "addons": {
          "snaps": [
            {
              "name": "vault"
            }
          ],
          "apt": {
            "update": true,
            "packages": [
              "docker-ce"
            ]
          }
        }
      },
      {
        "stage": "test",
        "name": "http-job-test",
        "script": [
          "GO111MODULE=on make build",
          "mkdir -p build/linux/amd64",
          "cp ${GOPATH%%:*}/bin/travis-worker build/linux/amd64",
          "make http-job-test"
        ]
      }
    ]
  }
}