Skip to content

Commit 701726d

Browse files
committed
Display os arch info in log
1 parent 15f7570 commit 701726d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/build-binaries.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44

55
jobs:
66
build:
7-
name: Building CATS on ${{ matrix.os }} {{ matrix.arch }}
7+
name: Building CATS on ${{ matrix.os }} ${{ matrix.arch }}
88
runs-on: ${{ matrix.os }}
99
strategy:
1010
matrix:
@@ -21,7 +21,8 @@ jobs:
2121
java-version: '21'
2222
distribution: 'graalvm'
2323
github-token: ${{ secrets.GITHUB_TOKEN }}
24-
native-image-job-reports: 'true'
24+
- name: Display OS Arch
25+
run: uname -p
2526

2627
- name: Build and run CATS
2728
run: |
@@ -31,5 +32,5 @@ jobs:
3132
- name: Upload native image
3233
uses: actions/upload-artifact@v4
3334
with:
34-
name: cats-${{ matrix.os }}
35+
name: cats-${{ matrix.os }}-${{ matrix.arch }}
3536
path: target/cats-runner

0 commit comments

Comments
 (0)