We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15f7570 commit 701726dCopy full SHA for 701726d
.github/workflows/build-binaries.yml
@@ -4,7 +4,7 @@ on:
4
5
jobs:
6
build:
7
- name: Building CATS on ${{ matrix.os }} {{ matrix.arch }}
+ name: Building CATS on ${{ matrix.os }} ${{ matrix.arch }}
8
runs-on: ${{ matrix.os }}
9
strategy:
10
matrix:
@@ -21,7 +21,8 @@ jobs:
21
java-version: '21'
22
distribution: 'graalvm'
23
github-token: ${{ secrets.GITHUB_TOKEN }}
24
- native-image-job-reports: 'true'
+ - name: Display OS Arch
25
+ run: uname -p
26
27
- name: Build and run CATS
28
run: |
@@ -31,5 +32,5 @@ jobs:
31
32
- name: Upload native image
33
uses: actions/upload-artifact@v4
34
with:
- name: cats-${{ matrix.os }}
35
+ name: cats-${{ matrix.os }}-${{ matrix.arch }}
36
path: target/cats-runner
0 commit comments