Skip to content

Commit

Permalink
Replace arm64 instances with aarch64 where possible.
Browse files Browse the repository at this point in the history
  • Loading branch information
kirkrodrigues committed Jul 21, 2024
1 parent 04ccdd7 commit 1f3704a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-and-release-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ on:
concurrency: "${{github.workflow}}-${{github.ref}}"

jobs:
build-lib-for-linux-arm64:
build-lib-for-linux-aarch64:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4"
Expand All @@ -41,7 +41,7 @@ jobs:
with:
platforms: "arm64"

- name: "Build native library for Linux ARM64"
- name: "Build native library for Linux aarch64"
run: >-
docker run
--rm
Expand All @@ -53,7 +53,7 @@ jobs:
- uses: "actions/upload-artifact@v4"
with:
name: "libclp-ffi-java-linux-arm64"
name: "libclp-ffi-java-linux-aarch64"
path: "${{github.workspace}}/target/clp-ffi-*-native-lib/"
if-no-files-found: "error"
retention-days: 1
Expand All @@ -79,14 +79,14 @@ jobs:
name: >-
${{ matrix.runner == 'macos-13'
&& 'libclp-ffi-java-macos-amd64'
|| 'libclp-ffi-java-macos-arm64' }}
|| 'libclp-ffi-java-macos-aarch64' }}
path: "${{github.workspace}}/target/clp-ffi-*-native-lib/"
if-no-files-found: "error"
retention-days: 1

build-and-release:
needs:
- "build-lib-for-linux-arm64"
- "build-lib-for-linux-aarch64"
- "build-lib-for-macos"
runs-on: "ubuntu-20.04"
permissions:
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:

- uses: "actions/download-artifact@v4"
with:
name: "libclp-ffi-java-linux-arm64"
name: "libclp-ffi-java-linux-aarch64"
path: "./target/."

- uses: "actions/download-artifact@v4"
Expand Down

0 comments on commit 1f3704a

Please sign in to comment.