This is an automated email from the ASF dual-hosted git repository. paulk pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/groovy.git
commit 8bcb37582d55e7abf709bebb4491de1bd48bb728 Author: Paul King <[email protected]> AuthorDate: Wed Apr 16 16:49:40 2025 +1000 test artifact production --- .github/workflows/groovy-build-artifacts.yml | 45 ++++++++++++++++++++++++++++ .github/workflows/groovy-build-dist.yml | 2 +- 2 files changed, 46 insertions(+), 1 deletion(-) diff --git a/.github/workflows/groovy-build-artifacts.yml b/.github/workflows/groovy-build-artifacts.yml new file mode 100644 index 0000000000..5e97632da7 --- /dev/null +++ b/.github/workflows/groovy-build-artifacts.yml @@ -0,0 +1,45 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +name: Generate SNAPSHOT artifacts + +on: [push, pull_request] + +permissions: + contents: read + +jobs: + dist: + runs-on: ubuntu-latest + env: + DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} + steps: + - name: Install graphviz + run: sudo apt-get install -y graphviz + - name: Set up JDK + uses: actions/setup-java@v4 + with: + distribution: 'zulu' + java-version: 21 + check-latest: true + - uses: actions/checkout@v4 + - name: Publish to Local Repository + run: ./gradlew clean publishMavenPublicationToLocalFileRepository --no-build-cache --no-scan --refresh-dependencies + timeout-minutes: 90 + - name: Upload artifacts + uses: actions/upload-artifact@v4 + with: + name: apache-groovy-repo-SNAPSHOT + path: build/repo/ diff --git a/.github/workflows/groovy-build-dist.yml b/.github/workflows/groovy-build-dist.yml index ad3be105b7..be44d5bcda 100644 --- a/.github/workflows/groovy-build-dist.yml +++ b/.github/workflows/groovy-build-dist.yml @@ -13,7 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -name: Generate SNAPSHOT +name: Generate SNAPSHOT distributions on: [push, pull_request]
