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

Remove docker repo #65

Merged
merged 1 commit into from
Jun 26, 2024

Remove docker repo

08e2929
Select commit
Loading
Failed to load commit list.
Merged

Remove docker repo #65

Remove docker repo
08e2929
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Jun 25, 2024 in 10m 54s

Build Passed

The build passed.

Details

This is a normal build for the remove-docker-repo 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
303.1 Coverage 1.20.x Linux passed
303.2 Docker and Integration Tests 1.20.x TAG=`if [ $TRAVIS_BRANCH == "master" ]; then echo -n latest; else echo -n $TRAVIS_BRANCH; fi` Linux passed

Build Configuration

Build Option Setting
Language Go
Operating System Linux (Xenial)
Go Version 1.20.x
Build Configuration
{
  "language": "go",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "go": [
    "1.20.x"
  ],
  "addons": {
    "apt": {
      "update": true,
      "packages": [
        "ruby"
      ]
    }
  },
  "jobs": {
    "include": [
      {
        "name": "Coverage",
        "os": "linux",
        "dist": "jammy",
        "install": [
          "sudo gem install coveralls-lcov",
          "go install github.com/jandelgado/gcov2lcov@latest",
          "curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.54.2",
          "go get ./..."
        ],
        "script": [
          "go build -ldflags=\"-X main.Commit=$(git rev-parse HEAD)\" cmd/koinos-jsonrpc/main.go",
          "golangci-lint run ./..."
        ],
        "after_success": [
          "coveralls-lcov --repo-token \"$COVERALLS_REPO_TOKEN\" --service-name travis-pro coverage.info"
        ]
      },
      {
        "name": "Docker and Integration Tests",
        "os": "linux",
        "dist": "jammy",
        "services": [
          "docker"
        ],
        "env": [
          {
            "TAG": "`if [ $TRAVIS_BRANCH == \"master\" ]; then echo -n latest; else echo -n $TRAVIS_BRANCH; fi`"
          },
          {
            "JSONRPC_TAG": "$TAG"
          }
        ],
        "install": [
          "git clone https://github.com/koinos/koinos-integration-tests.git",
          "pushd koinos-integration-tests",
          "go get ./...",
          "popd"
        ],
        "before_script": [
          "echo $DOCKER_PASSWORD | docker login -u $DOCKER_USERNAME --password-stdin",
          "docker build . -t $TRAVIS_REPO_SLUG:$TAG"
        ],
        "script": [
          "pushd koinos-integration-tests",
          "./run.sh"
        ],
        "after_success": [
          "if [ \"$TRAVIS_PULL_REQUEST\" = \"false\" ]; then\n  docker push $TRAVIS_REPO_SLUG:$TAG\nfi\n"
        ]
      }
    ]
  },
  "notifications": {
    "slack": [
      {
        "rooms": [
          {
            "secure": "Ta4MaLdlfFlOwXLnQIBJ5bxPayXw6uAoLaoQGYJNEWwdWzDHZqLjI+cQiOYcWKfqP5ARDUD1xt4YpufK2FkJZq7FQlmNeM8dtOBUvn8KUAKPBqqEXJmvpxQHEaxdlZqaYrT+7YrQ7xemVmdOVIy4KYDSxcttzT2w3YRNBzlpzhv8Po+2R7yD6jQtDVw7xm494Z95eQohck69JqLLQUusK9WoRX1M74ZmaDrrru+M5VHU9X5tEKk5nouqllruXxCE0Q2c/sDniEVDCGDyvNQx9MP+G+/xcdedA14SeqJI03ETU2kGSaQJOt0PUxvBPPlpBUW0Bp/FxT96cyk7V58HBcsfu85C87I4//KiwnRXO7p5VRHmqlLR/BdhKBjs+naVb5AaiYnnh20J4QVxmcEU9DKw4PdXWq324McsmwXhFZa6AjSq/53v7u+yTlFtydfOf9UbwysFN1qGDrFWJ14yEJyhstJBlqh/Dvh8rCP7c04PWAdzGStpHzf7ffC1TtAyuR1T0whybR3PGTQVSwLNOtXqn8LV5txwayOiqYeeBHqBe1aZ6bv/AbX+he1Q9uBOSNQQeJmPwm3+EukVIQW4qY/Rs0wxM7fAfk1cT7EDZrTXVDX9FNhbM7QCfsxseaXeyhSLVsoktKxDNdcRJ2CaeRYQQCKHMjCyh3VwtFmt3vs="
          }
        ],
        "on_success": "never"
      }
    ]
  }
}