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(IamAssumeAuthenticator): introduce new authenticator type #229

Merged
merged 2 commits into from
Oct 15, 2024

fix: make IamAssumeAuthenticator immutable after initial construction

8d3035e
Select commit
Loading
Failed to load commit list.
Merged

feat(IamAssumeAuthenticator): introduce new authenticator type #229

fix: make IamAssumeAuthenticator immutable after initial construction
8d3035e
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Oct 9, 2024 in 4m 30s

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 #229 feat(IamAssumeAuthenticator): introduce new authenticator type.
Any changes that have been made to the main branch before the build ran are also included.

Jobs and Stages

This build has four jobs, running in parallel.

Stage 1: Build-Test

This stage passed.

Job Go Python OS State
1385.1 1.21.x Linux passed
1385.2 1.22.x Linux passed
1385.3 1.23.x Linux passed
1385.4 Detect-Secrets 3.12 Linux passed

Build Configuration

Build Option Setting
Language Go
Operating System Linux (Jammy)
Build Configuration
{
  "language": "go",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "notifications": {
    "email": [
      {
        "enabled": false
      }
    ]
  },
  "stages": [
    {
      "name": "Build-Test"
    },
    {
      "name": "Semantic-Release",
      "if": "(branch = main) AND (type IN (push, api)) AND (fork = false)"
    }
  ],
  "install": [
    "curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.61.0",
    "go install golang.org/x/tools/cmd/goimports@latest"
  ],
  "script": [
    "make all"
  ],
  "jobs": {
    "include": [
      {
        "stage": "Build-Test",
        "language": "go",
        "go": "1.21.x"
      },
      {
        "go": "1.22.x"
      },
      {
        "go": "1.23.x"
      },
      {
        "name": "Detect-Secrets",
        "language": "python",
        "python": "3.12",
        "install": [
          "pip install --upgrade \"git+https://github.com/ibm/detect-secrets.git@master#egg=detect-secrets\""
        ],
        "script": [
          "detect-secrets scan --update .secrets.baseline",
          "detect-secrets -v audit --report --fail-on-unaudited --fail-on-live --fail-on-audited-real .secrets.baseline"
        ]
      },
      {
        "stage": "Semantic-Release",
        "language": "node_js",
        "node_js": "22",
        "install": [
          "pip install --user bump-my-version",
          "npm install"
        ],
        "script": [
          "npm run semantic-release"
        ]
      }
    ]
  }
}