Skip to content

Commit 5259440

Browse files
committed
Print job names with options
1 parent 23aac3a commit 5259440

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/micronaut-template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
with:
8080
repository: micronaut-projects/micronaut-core
8181
path: ${{ env.MICRONAUT_CORE_PATH }}
82-
- name: Run nativeTest in micronaut-core
82+
- name: Run nativeTest in micronaut-core${{ inputs.NATIVE_IMAGE_OPTIONS && format(' with ''{0}''', inputs.NATIVE_IMAGE_OPTIONS) || '' }}
8383
run: |
8484
cd ${{ env.MICRONAUT_CORE_PATH }}
8585
./gradlew nativeTest

.github/workflows/quarkus-template.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
permissions:
6363
contents: read # to fetch code (actions/checkout)
6464

65-
name: Nightly Quarkus and GraalVM build${{ inputs.NATIVE_IMAGE_OPTIONS && format(' ({0})', inputs.NATIVE_IMAGE_OPTIONS) || '' }}
65+
name: Nightly Quarkus and GraalVM build
6666
runs-on: ubuntu-22.04
6767
if: (github.event_name == 'schedule' && github.repository == 'oracle/graal') || (github.event_name != 'schedule')
6868
outputs:
@@ -115,7 +115,7 @@ jobs:
115115
path: maven-repo.tgz
116116

117117
native-tests:
118-
name: Native Tests - ${{matrix.category}}${{ inputs.NATIVE_IMAGE_OPTIONS && format(' with options ({0})', inputs.NATIVE_IMAGE_OPTIONS) || '' }}
118+
name: Native Tests - ${{matrix.category}}${{ inputs.NATIVE_IMAGE_OPTIONS && format(' with ''{0}''', inputs.NATIVE_IMAGE_OPTIONS) || '' }}
119119
needs: build-quarkus-and-graalvm
120120
runs-on: ubuntu-latest
121121
env:

.github/workflows/reachability-metadata-template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,6 @@ jobs:
131131
sudo bash -c "cat ./.github/workflows/dockerd.service > /etc/systemd/system/docker.service.d/http-proxy.conf"
132132
sudo systemctl daemon-reload
133133
sudo systemctl restart docker
134-
- name: "Run '${{ matrix.coordinates }}' tests"
134+
- name: "Run '${{ matrix.coordinates }}' tests${{ inputs.NATIVE_IMAGE_OPTIONS && format(' with ''{0}''', inputs.NATIVE_IMAGE_OPTIONS) || '' }}"
135135
run: |
136136
./gradlew test -Pcoordinates=${{ matrix.coordinates }}

.github/workflows/spring-template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
with:
7373
repository: spring-projects/spring-petclinic
7474
path: ${{ env.SPRING_PETCLINIC_PATH }}
75-
- name: Run nativeTest in spring-petclinic${{ inputs.NATIVE_IMAGE_OPTIONS && format(' with options ({0})', inputs.NATIVE_IMAGE_OPTIONS) || '' }}
75+
- name: Run nativeTest in spring-petclinic${{ inputs.NATIVE_IMAGE_OPTIONS && format(' with ''{0}''', inputs.NATIVE_IMAGE_OPTIONS) || '' }}
7676
run: |
7777
cd ${{ env.SPRING_PETCLINIC_PATH }}
7878
./gradlew nativeTest

0 commit comments

Comments
 (0)