-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# This workflow does not publish any build scans but allows to smoke test the composite action | ||
name: TEST - Publish Maven Build Scan | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
publish-build-scan: | ||
name: Verify Saved Build Scans | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout current repository | ||
uses: actions/checkout@v4 | ||
- name: Checkout Maven sample project | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: 'gradle/gradle-enterprise-build-config-samples' | ||
path: 'sample' | ||
ref: 'main' | ||
- name: Set up JDK 8 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '8' | ||
distribution: 'temurin' | ||
- name: Run Maven Build | ||
working-directory: ./sample/common-gradle-enterprise-maven-configuration | ||
run: mvn clean -B | ||
- name: Save Maven Build Scan | ||
uses: ./maven-build-scan/save | ||
- name: Publish Maven Build Scans | ||
uses: ./maven-build-scan/publish | ||
with: | ||
develocity-url: 'https://foo.bar' | ||
pr-number: ${{ github.event.number }} | ||
- name: Check publication log | ||
run: | | ||
ls -la ./maven-build-scan-publisher | ||
ls -la ~/.m2/.gradle-enterprise/build-scan-data/ |