Skip to content

Commit

Permalink
Temp switch to using 1.54-SNAPSHOT tempto form GH package repo
Browse files Browse the repository at this point in the history
  • Loading branch information
aaneja committed Feb 27, 2025
1 parent d133ef3 commit 6213ec5
Show file tree
Hide file tree
Showing 11 changed files with 32 additions and 9 deletions.
1 change: 1 addition & 0 deletions .github/workflows/kudu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ env:
MAVEN_INSTALL_OPTS: "-Xmx2G -XX:+ExitOnOutOfMemoryError"
MAVEN_FAST_INSTALL: "-B -V --quiet -T 1C -DskipTests -Dair.check.skip-all -Dmaven.javadoc.skip=true"
RETRY: .github/bin/retry
GITHUB_TOKEN: ${{ github.token }}

jobs:
changes:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/maven-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ env:
MAVEN_OPTS: "-Xmx1024M -XX:+ExitOnOutOfMemoryError"
MAVEN_INSTALL_OPTS: "-Xmx2G -XX:+ExitOnOutOfMemoryError"
RETRY: .github/bin/retry
GITHUB_TOKEN: ${{ github.token }}

jobs:
maven-checks:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/product-tests-basic-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ env:
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"
RETRY: .github/bin/retry
GITHUB_TOKEN: ${{ github.token }}

jobs:
changes:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/product-tests-specific-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ env:
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"
RETRY: .github/bin/retry
GITHUB_TOKEN: ${{ github.token }}

jobs:
changes:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/singlestore-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ env:
MAVEN_FAST_INSTALL: "-B -V --quiet -T 1C -DskipTests -Dair.check.skip-all -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
GITHUB_TOKEN: ${{ github.token }}

jobs:
changes:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/spark-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ env:
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
GITHUB_TOKEN: ${{ github.token }}

jobs:
changes:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-other-modules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ env:
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
GITHUB_TOKEN: ${{ github.token }}

jobs:
changes:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ env:
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
GITHUB_TOKEN: ${{ github.token }}

jobs:
changes:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/web-ui-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ env:
# An envar that signals to tests we are executing in the CI environment
CONTINUOUS_INTEGRATION: true
RETRY: .github/bin/retry
GITHUB_TOKEN: ${{ github.token }}

jobs:
changes:
Expand Down
24 changes: 19 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,20 @@
<tag>HEAD</tag>
</scm>

<repositories>
<repository>
<id>central</id>
<url>https://repo1.maven.org/maven2</url>
</repository>
<repository>
<id>github</id>
<url>https://maven.pkg.github.com/prestodb/presto</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>

<properties>
<air.main.basedir>${project.basedir}</air.main.basedir>

Expand All @@ -56,7 +70,7 @@
<!-- Changing joda version changes tzdata which must match deployed JVM tzdata
Do not change this without also making sure it matches -->
<dep.joda.version>2.12.7</dep.joda.version>
<dep.tempto.version>gradleUpgrade810_jdk8-SNAPSHOT</dep.tempto.version>
<dep.tempto.version>1.54-SNAPSHOT</dep.tempto.version>
<dep.testng.version>7.5</dep.testng.version>
<dep.lucene.version>8.10.0</dep.lucene.version>
<dep.assertj-core.version>3.8.0</dep.assertj-core.version>
Expand Down Expand Up @@ -2168,7 +2182,7 @@
</dependency>

<dependency>
<groupId>com.github.aaneja.tempto</groupId>
<groupId>io.prestodb.tempto</groupId>
<artifactId>tempto-core</artifactId>
<version>${dep.tempto.version}</version>
<exclusions>
Expand All @@ -2192,7 +2206,7 @@
</dependency>

<dependency>
<groupId>com.github.aaneja.tempto</groupId>
<groupId>io.prestodb.tempto</groupId>
<artifactId>tempto-ldap</artifactId>
<version>${dep.tempto.version}</version>
<exclusions>
Expand All @@ -2208,7 +2222,7 @@
</dependency>

<dependency>
<groupId>com.github.aaneja.tempto</groupId>
<groupId>io.prestodb.tempto</groupId>
<artifactId>tempto-kafka</artifactId>
<version>${dep.tempto.version}</version>
<exclusions>
Expand All @@ -2228,7 +2242,7 @@
</dependency>

<dependency>
<groupId>com.github.aaneja.tempto</groupId>
<groupId>io.prestodb.tempto</groupId>
<artifactId>tempto-runner</artifactId>
<version>${dep.tempto.version}</version>
<exclusions>
Expand Down
8 changes: 4 additions & 4 deletions presto-product-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,19 +83,19 @@
</exclusions>
</dependency>
<dependency>
<groupId>com.github.aaneja.tempto</groupId>
<groupId>io.prestodb.tempto</groupId>
<artifactId>tempto-core</artifactId>
</dependency>
<dependency>
<groupId>com.github.aaneja.tempto</groupId>
<groupId>io.prestodb.tempto</groupId>
<artifactId>tempto-ldap</artifactId>
</dependency>
<dependency>
<groupId>com.github.aaneja.tempto</groupId>
<groupId>io.prestodb.tempto</groupId>
<artifactId>tempto-kafka</artifactId>
</dependency>
<dependency>
<groupId>com.github.aaneja.tempto</groupId>
<groupId>io.prestodb.tempto</groupId>
<artifactId>tempto-runner</artifactId>
</dependency>
<dependency>
Expand Down

0 comments on commit 6213ec5

Please sign in to comment.