Skip to content

Commit

Permalink
fix: bump macos version in github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rolznz committed Dec 11, 2024
1 parent 83fa33c commit fac838a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-libraries.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
{ host: ubuntu-20.04, tool: cross, target: aarch64-unknown-linux-gnu, output: libldk_node.so },
{ host: ubuntu-20.04, tool: cross, target: arm-unknown-linux-gnueabihf, output: libldk_node.so },
{ host: windows-2019, tool: cargo, target: x86_64-pc-windows-msvc, output: ldk_node.dll },
{ host: macos-12, tool: cargo, target: x86_64-apple-darwin, output: libldk_node.dylib },
{ host: macos-12, tool: cargo, target: aarch64-apple-darwin, output: libldk_node.dylib },
{ host: macos-13, tool: cargo, target: x86_64-apple-darwin, output: libldk_node.dylib },
{ host: macos-13, tool: cargo, target: aarch64-apple-darwin, output: libldk_node.dylib },
]
runs-on: ${{ matrix.build.host }}
steps:
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
path: target/${{ matrix.build.target }}/release/${{ matrix.build.output }}

make-macos-universal:
runs-on: macos-12
runs-on: macos-13
needs: build
steps:
- name: Download macOS artifacts
Expand Down

0 comments on commit fac838a

Please sign in to comment.