From f197849fcb5d42dabb9c38672378b3d61f673ce3 Mon Sep 17 00:00:00 2001 From: Vyatcheslav Suharnikov Date: Fri, 11 Jul 2025 08:25:25 +0300 Subject: [PATCH] Fix a path to the library for macOS with Intel --- .github/workflows/publish.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 84bd556..4641cde 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,4 +1,4 @@ -name: Publish artfiacts to Maven Central +name: Publish artifacts to Maven Central on: workflow_dispatch: @@ -30,7 +30,8 @@ jobs: cmd: ./build.sh - platform: darwin arch: x86-64 - cmd: CC='cc -target x86_64-apple-darwin20.1.0' CXX='c++ -std=c++11 -target x86_64-apple-darwin20.1.0' ./build.sh && mv supranational/blst/Mac/{aarch64,amd64} + # https://github.com/openjdk/jdk/commit/5b1baa3d10d9ef3f07f133ece8a5f1d40311c74d#diff-6078ab1e47c6bb312b7f41e7539b4849189260c38f9b359c205a5aa0f633533dR278 + cmd: CC='cc -target x86_64-apple-darwin20.1.0' CXX='c++ -std=c++11 -target x86_64-apple-darwin20.1.0' ./build.sh && mv supranational/blst/Mac/{aarch64,x86_64} - platform: linux os: ubuntu-22.04 extra-packages: gcc-9 g++-9