Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ name: CI

on:
push:
branches: ['master']
# branches: ['master']
tags-ignore: [v*] # release tags are autogenerated after a successful CI, no need to run CI against them
pull_request:
branches: ['**']
Expand Down Expand Up @@ -39,7 +39,7 @@ jobs:
- name: 4. Perform release
# Release job, only for pushes to the main development branch
if: github.event_name == 'push'
&& github.ref == 'refs/heads/master'
# && github.ref == 'refs/heads/master'
&& github.repository == 'linkedin/transport'
&& !contains(toJSON(github.event.commits.*.message), '[skip release]')

Expand Down
2 changes: 1 addition & 1 deletion transportable-udfs-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def writeVersionInfo = { file ->
entry(key: "hive-version", value: '1.2.2')
entry(key: "trino-version", value: '352')
entry(key: "spark-version", value: '2.3.0')
entry(key: "scala-version", value: '2.11.8')
entry(key: "scala-version", value: '2.12.10')
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,11 @@ private static final String getVersion(final String platform) {
),
ImmutableList.of(new ShadedJarPackaging(
ImmutableList.of("org.apache.hadoop", "org.apache.spark"),
ImmutableList.of("com.linkedin.transport.spark.**")))
ImmutableList.of(
"com.linkedin.transport.spark.**",
"com.linkedin.transport.api.**"
)
))
)
);
}