Skip to content

Commit

Permalink
Add macOS arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
ltrzesniewski committed Feb 18, 2024
1 parent 3ea8d86 commit abedf53
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,13 @@ jobs:
platform: x64
extension: so

- name: macOS arm64
runner: macos-14
platform: arm64
extension: dylib

- name: macOS x64
runner: macos-latest
runner: macos-12
platform: x64
extension: dylib

Expand Down Expand Up @@ -195,8 +200,11 @@ jobs:
- name: Linux x64
runner: ubuntu-latest

- name: macOS arm64
runner: macos-14

- name: macOS x64
runner: macos-latest
runner: macos-12

- name: Windows x64
runner: windows-2022
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ The following systems are supported:
- Windows x64
- Windows x86
- Linux x64
- macOS arm64
- macOS x64

## API Types
Expand Down
1 change: 1 addition & 0 deletions src/NuGetReadme.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ The following systems are supported:
- Windows x64
- Windows x86
- Linux x64
- macOS arm64
- macOS x64

For more information, see the [GitHub repository](https://github.com/ltrzesniewski/pcre-net).
1 change: 1 addition & 0 deletions src/PCRE.NET/PCRE.NET.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
<PcreNetNative Include="..\..\lib\PCRE.NET.Native.x86.dll" Platform="win-x86" />
<PcreNetNative Include="..\..\lib\PCRE.NET.Native.x64.dll" Platform="win-x64" />
<PcreNetNative Include="..\..\lib\PCRE.NET.Native.x64.so" Platform="linux-x64" />
<PcreNetNative Include="..\..\lib\PCRE.NET.Native.arm64.dylib" Platform="osx-arm64" />
<PcreNetNative Include="..\..\lib\PCRE.NET.Native.x64.dylib" Platform="osx-x64" />

<PcreNetNative Update="@(PcreNetNative)" ToInclude="$([System.IO.File]::Exists('%(FullPath)'))" Visible="false" />
Expand Down

0 comments on commit abedf53

Please sign in to comment.