Add enhanced cte scheduling mode #26600
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test other modules | |
on: | |
pull_request: | |
env: | |
# An envar that signals to tests we are executing in the CI environment | |
CONTINUOUS_INTEGRATION: true | |
MAVEN_OPTS: "-Xmx1024M -XX:+ExitOnOutOfMemoryError" | |
MAVEN_INSTALL_OPTS: "-Xmx2G -XX:+ExitOnOutOfMemoryError" | |
MAVEN_FAST_INSTALL: "-B -V --quiet -T 1C -DskipTests -Dair.check.skip-all --no-transfer-progress -Dmaven.javadoc.skip=true" | |
MAVEN_TEST: "-B -Dair.check.skip-all -Dmaven.javadoc.skip=true -DLogTestDurationListener.enabled=true --no-transfer-progress --fail-at-end" | |
RETRY: .github/bin/retry | |
jobs: | |
changes: | |
runs-on: ubuntu-latest | |
# Required permissions | |
permissions: | |
pull-requests: read | |
# Set job outputs to values from filter step | |
outputs: | |
codechange: ${{ steps.filter.outputs.codechange }} | |
steps: | |
# For pull requests it's not necessary to checkout the code | |
- uses: dorny/paths-filter@v2 | |
id: filter | |
with: | |
filters: | | |
codechange: | |
- '!presto-docs/**' | |
test-other-modules: | |
runs-on: ubuntu-latest | |
needs: changes | |
if: needs.changes.outputs.codechange == 'true' | |
timeout-minutes: 60 | |
concurrency: | |
group: ${{ github.workflow }}-test-other-modules-${{ github.event.pull_request.number }} | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
show-progress: false | |
- uses: actions/setup-java@v2 | |
with: | |
distribution: 'temurin' | |
java-version: 8 | |
- name: Cache local Maven repository | |
id: cache-maven | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven-2- | |
# Workaround for Ubuntu 24 and mysql to find the dependent library (https://github.com/prestodb/presto/issues/24327) | |
- name: Create symlink for libaio.so.1 | |
run: sudo ln -s /usr/lib/x86_64-linux-gnu/libaio.so.1t64 /usr/lib/x86_64-linux-gnu/libaio.so.1 | |
- name: Populate maven cache | |
if: steps.cache-maven.outputs.cache-hit != 'true' | |
run: ./mvnw de.qaware.maven:go-offline-maven-plugin:resolve-dependencies --no-transfer-progress && .github/bin/download_nodejs | |
- name: Maven Install | |
run: | | |
export MAVEN_OPTS="${MAVEN_INSTALL_OPTS}" | |
./mvnw install ${MAVEN_FAST_INSTALL} -pl '!:presto-docs,!:presto-server,!presto-test-coverage' | |
- name: Maven Tests | |
run: | | |
./mvnw test -T 1 ${MAVEN_TEST} -pl ' | |
!presto-tests, | |
!presto-accumulo, | |
!presto-cassandra, | |
!presto-hive, | |
!presto-kudu, | |
!presto-docs, | |
!presto-server, | |
!presto-main, | |
!presto-mongodb, | |
!presto-spark-package, | |
!presto-spark-launcher, | |
!presto-spark-testing, | |
!presto-spark-base, | |
!presto-redis, | |
!presto-elasticsearch, | |
!presto-orc, | |
!presto-thrift-connector, | |
!presto-native-execution, | |
!presto-test-coverage, | |
!presto-iceberg, | |
!presto-singlestore, | |
!presto-native-sidecar-plugin' |