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

feat: Added the new connection type - Redundant GRE #175

Closed
wants to merge 2 commits into from

fix: possible fix

ec9d378
Select commit
Loading
Failed to load commit list.
Closed

feat: Added the new connection type - Redundant GRE #175

fix: possible fix
ec9d378
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch failed May 3, 2024 in 2m 21s

Build Failed

The build failed, just like the previous build.

Details

This is a normal build for the rgre-related-changes branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build has two jobs, running in parallel.

Job Go ENV OS State
625.1 1.21.x GO111MODULE=on Linux failed
625.2 1.22.x GO111MODULE=on Linux failed

Build Configuration

Build Option Setting
Language Go
Operating System Linux (Jammy)
Go Versions 1.21.x, 1.22.x
Build Configuration
{
  "language": "go",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "go": [
    "1.21.x",
    "1.22.x"
  ],
  "notifications": {
    "email": [
      {
        "enabled": true
      }
    ]
  },
  "env": [
    "global={:GO111MODULE=>\"on\"}"
  ],
  "before_install": [
    "sudo apt-get update",
    "eval \"$(pyenv init -)\"",
    "python -V",
    "[ -z \"${TRAVIS_TAG}\" ] &&  [ \"${TRAVIS_PULL_REQUEST}\" == \"false\" ] && openssl aes-256-cbc -K $encrypted_d4a185972ecc_key -iv $encrypted_d4a185972ecc_iv -in pdns.env.enc -out pdns.env -d || true && openssl aes-256-cbc -K $encrypted_6de0fb2f002f_key -iv $encrypted_6de0fb2f002f_iv -in directlink.env.enc -out directlink.env -d || true && openssl aes-256-cbc -K $encrypted_3d8a3eb98382_key -iv $encrypted_3d8a3eb98382_iv -in transit.env.enc -out transit.env -d || true && openssl aes-256-cbc -K $encrypted_fc092b9428d6_key -iv $encrypted_fc092b9428d6_iv -in cis.env.enc -out cis.env -d || true && openssl aes-256-cbc -K $encrypted_89a9eb4f9417_key -iv $encrypted_89a9eb4f9417_iv -in dns.env.enc -out dns.env -d || true && openssl aes-256-cbc -K $encrypted_fb1b85a9795b_key -iv $encrypted_fb1b85a9795b_iv -in cislog.env.enc -out cislog.env -d || true"
  ],
  "install": [
    "curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh| sh -s -- -b $(go env GOPATH)/bin v1.55.2"
  ],
  "script": [
    "make travis-ci"
  ],
  "before_deploy": [
    "nvm install 20",
    "npm install -g [email protected]",
    "npm install @semantic-release/changelog",
    "npm install @semantic-release/exec",
    "npm install @semantic-release/git",
    "npm install @semantic-release/github",
    "pip install --user bump2version"
  ],
  "deploy": [
    {
      "provider": "script",
      "script": "npx semantic-release",
      "skip_cleanup": true,
      "on": {
        "go": "1.22.x",
        "branch": [
          "master"
        ]
      }
    }
  ]
}