Skip to content

Commit 05fa618

Browse files
committed
Revert building Trino in the CI
1 parent 27cdf7a commit 05fa618

File tree

2 files changed

+2
-28
lines changed

2 files changed

+2
-28
lines changed

.github/workflows/maven.yaml

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
build:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v5
14+
- uses: actions/checkout@v6
1515
- name: Set up the JDK
1616
uses: actions/setup-java@v5
1717
with:
@@ -24,19 +24,6 @@ jobs:
2424
echo "::add-matcher::.github/problem-matcher.json"
2525
echo "::remove-matcher owner=java::"
2626
27-
- name: Get Trino version
28-
id: trino_tag
29-
run: |
30-
trino_tag=$(./mvnw -B help:evaluate -Dexpression=dep.trino.version -q -DforceStdout)
31-
echo "trino_tag=$trino_tag" >> $GITHUB_OUTPUT
32-
- uses: actions/checkout@v5
33-
with:
34-
repository: trinodb/trino
35-
path: trino
36-
ref: ${{ steps.trino_tag.outputs.trino_tag }}
37-
- name: Build Trino
38-
run: cd trino && ./mvnw -B install -DskipTests -Dair.check.skip-all -Dskip.npm -pl ':trino-main,:trino-testing,:trino-memory' -am
39-
4027
- name: Build with Maven
4128
env:
4229
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/release.yaml

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
contents: write
1313
packages: write
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
with:
1717
fetch-depth: 0
1818
- uses: actions/setup-java@v5
@@ -39,19 +39,6 @@ jobs:
3939
username: ${{ secrets.DOCKERHUB_USERNAME }}
4040
password: ${{ secrets.DOCKERHUB_TOKEN }}
4141

42-
- name: Get Trino version
43-
id: trino_tag
44-
run: |
45-
trino_tag=$(./mvnw -B help:evaluate -Dexpression=dep.trino.version -q -DforceStdout)
46-
echo "trino_tag=$trino_tag" >> $GITHUB_OUTPUT
47-
- uses: actions/checkout@v5
48-
with:
49-
repository: trinodb/trino
50-
path: trino
51-
ref: ${{ steps.trino_tag.outputs.trino_tag }}
52-
- name: Build Trino
53-
run: cd trino && ./mvnw -B install -DskipTests -Dair.check.skip-all -Dskip.npm -pl ':trino-main,:trino-testing,:trino-memory' -am
54-
5542
- name: Prepare release
5643
run: ./mvnw -B release:prepare
5744
env:

0 commit comments

Comments
 (0)