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

Add Iceberg support #68

Merged
merged 46 commits into from
Apr 23, 2023

fix tests

2342fc4
Select commit
Failed to load commit list.
Merged

Add Iceberg support #68

fix tests
2342fc4
Select commit
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Apr 23, 2023 in 10m 4s

Build Passed

The build passed, just like the previous build.

Details

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

Jobs and Stages

This build has three jobs, running in parallel.

Stage 1: test

This stage passed.

Job Scala JDK ENV OS State
759.1 2.12.15 oraclejdk11 Linux passed
759.2 2.12.15 openjdk11 Linux passed
759.3 2.12.15 oraclejdk11 TEST="test coverage" Linux passed

Build Configuration

Build Option Setting
Language Scala
Operating System Linux (Bionic)
Scala Version 2.12.15
JDK Versions oraclejdk11, openjdk11
Build Configuration
{
  "language": "scala",
  "os": [
    "linux"
  ],
  "dist": "bionic",
  "scala": [
    "2.12.15"
  ],
  "jdk": [
    "oraclejdk11",
    "openjdk11"
  ],
  "stages": [
    {
      "name": "test"
    },
    {
      "name": "release",
      "if": "((branch = main AND type = push) OR (tag IS present)) AND NOT fork"
    }
  ],
  "jobs": {
    "include": [
      {
        "env": [
          {
            "TEST": "\"test coverage\""
          }
        ],
        "script": [
          "sbt compile coverage test coverageReport coverageAggregate coveralls"
        ]
      },
      {
        "stage": "release",
        "script": [
          "sbt ci-release"
        ]
      }
    ]
  },
  "before_install": [
    "git fetch --tags"
  ]
}