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

2.1.0 final #75

Merged
merged 29 commits into from
Oct 2, 2023

Merge pull request #74 from HorizenOfficial/2_1_0_final

86cfd3c
Select commit
Loading
Failed to load commit list.
Merged

2.1.0 final #75

Merge pull request #74 from HorizenOfficial/2_1_0_final
86cfd3c
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Oct 2, 2023 in 14m 58s

Build Passed

The build passed, just like the previous build.

Details

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

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 Generic
Operating System Linux (Focal)
Build Configuration
{
  "language": "generic",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "vm": {
    "size": "large"
  },
  "services": [
    "docker"
  ],
  "git": {
    "depth": false
  },
  "env": [
    "global={:DOCKER_ORG=>\"zencash\"}={:IMAGE_NAME=>\"sc-ci-base\"}={:IMAGE_TAG=>\"'bionic_jdk-11_latest'\"}={:PROD_RELEASE_BRANCH=>\"main\"}"
  ],
  "jobs": {
    "include": [
      {
        "name": "jdk-11_latest",
        "env": [
          {
            "TESTS": "'000'"
          }
        ],
        "script": [
          "source ci/setup_env.sh",
          "ci/travis_keep_alive.sh",
          "ci/script.sh tests"
        ]
      }
    ]
  },
  "deploy": [
    {
      "provider": "script",
      "script": "ci/script.sh release",
      "skip_cleanup": true,
      "on": {
        "tags": true,
        "condition": [
          "$CONTAINER_PUBLISH = true"
        ]
      }
    }
  ],
  "cache": {
    "directories": [
      "${TRAVIS_BUILD_DIR}/.ivy2/cache",
      "${TRAVIS_BUILD_DIR}/.sbt"
    ]
  },
  "before_cache": [
    "find ${TRAVIS_BUILD_DIR}/.ivy2/cache -name \"ivydata-*.properties\" -print -delete",
    "find ${TRAVIS_BUILD_DIR}/.sbt        -name \"*.lock\"               -print -delete"
  ]
}