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(IAM Identity): adding effective account settings #347

Merged
merged 4 commits into from
Aug 12, 2024

Merge branch 'main' into iam-identity-effectiveAccSettings

737855c
Select commit
Loading
Failed to load commit list.
Merged

feat(IAM Identity): adding effective account settings #347

Merge branch 'main' into iam-identity-effectiveAccSettings
737855c
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Aug 12, 2024 in 5m 41s

Build Passed

The build passed, just like the previous build.

Details

This is a normal build for the iam-identity-effectiveAccSettings branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build has four jobs, running in parallel.

Stage 1: Build-Test

This stage passed.

Job Go Python ENV OS State
2170.1 1.20.x GO111MODULE=on Linux passed
2170.2 1.21.x GO111MODULE=on Linux passed
2170.3 1.22.x GO111MODULE=on Linux passed
2170.4 Detect-Secrets 3.12 GO111MODULE=on Linux passed

Build Configuration

Build Option Setting
Language Go
Operating System Linux (Jammy)
Build Configuration
{
  "language": "go",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "notifications": {
    "email": [
      {
        "enabled": true
      }
    ]
  },
  "env": [
    "global={:GO111MODULE=>\"on\"}"
  ],
  "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.59.1"
  ],
  "script": [
    "make travis-ci"
  ],
  "jobs": {
    "include": [
      {
        "stage": "Build-Test",
        "language": "go",
        "go": "1.20.x"
      },
      {
        "go": "1.21.x"
      },
      {
        "go": "1.22.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"
        ]
      }
    ]
  }
}