Skip to content

[BACK-4088] Bump go version to 1.25.x - #212

Open
lostlevels wants to merge 1 commit into
masterfrom
jimmy-go-125
Open

[BACK-4088] Bump go version to 1.25.x#212
lostlevels wants to merge 1 commit into
masterfrom
jimmy-go-125

[BACK-4088] Bump go version to 1.25.7.

9daa48d
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Mar 16, 2026 in 9m 15s

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 #212 [BACK-4088] Bump go version to 1.25.5..
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.

Build Configuration

Build Option Setting
Language Go
Operating System Linux (Jammy)
Go Version 1.25.7
Build Configuration
{
  "language": "go",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "go": [
    "1.25.7"
  ],
  "services": [
    "docker"
  ],
  "env": [
    "global={:MONGODB=>\"8.0.9\"}={:MONGOSH=>\"2.5.1\"}"
  ],
  "cache": {
    "directories": [
      "$HOME/.cache/go-build"
    ]
  },
  "before_install": [
    "sudo rm -f /etc/apt/sources.list.d/rabbitmq*",
    "sudo apt-get update",
    "sudo apt-get install --allow-downgrades -y docker-buildx-plugin mongodb-org=${MONGODB} mongodb-org-database=${MONGODB} mongodb-org-server=${MONGODB} mongodb-mongosh=${MONGOSH} mongodb-org-mongos=${MONGODB} mongodb-org-tools",
    "mkdir /tmp/data",
    "/usr/bin/mongod --dbpath /tmp/data --bind_ip 127.0.0.1 --replSet rs0 --logpath ${PWD}/mongod.log &> /dev/null &",
    "until nc -z localhost 27017; do echo Waiting for MongoDB; sleep 1; done",
    "/usr/bin/mongosh --eval 'rs.initiate(); while (rs.status().startupStatus || (rs.status().hasOwnProperty(\"myState\") && rs.status().myState != 1)) { printjson( rs.status() ); sleep(1000); }; printjson( rs.status() );'"
  ],
  "addons": {
    "apt": {
      "sources": [
        {
          "sourceline": "deb https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/8.0 multiverse",
          "key_url": "https://pgp.mongodb.com/server-8.0.asc"
        }
      ]
    },
    "artifacts": {
      "paths": [
        "$(git ls-files -o deploy/*/*-*.tar.gz | tr \"\\n\" \":\")"
      ],
      "target_paths": [
        "/"
      ],
      "region": "us-west-2"
    }
  },
  "script": [
    "make build test",
    "./artifact.sh"
  ]
}