Skip to content

Commit

Permalink
testing macOS build
Browse files Browse the repository at this point in the history
  • Loading branch information
agracio committed Mar 9, 2025
1 parent 468c322 commit 17ae442
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 3 deletions.
13 changes: 11 additions & 2 deletions .github/actions/setup-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ runs:
path: ~/Library/Caches/node-gyp
key: '${{ inputs.os }}-${{ inputs.node}}'


- name: Cache node modules
id: cache-nodemodules
uses: actions/cache@v4
Expand All @@ -53,12 +52,22 @@ runs:
dotnet-version: '8.0.x' # SDK Version to use; x will use the latest version of the 8.0 channel

- name: Setup Mono
if: inputs.os == 'macos-14'
if: inputs.os == 'macos-14' || inputs.os == 'macos-15'
shell: bash
run: |
brew install mono
brew reinstall pkg-config
- name: Setup Mono
if: inputs.os == 'macos-13'
shell: bash
run: |
brew uninstall mono
brew uninstall pkg-config
brew reinstall mono
brew reinstall pkg-config
- name: Versions
shell: bash
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
fail-fast: false
matrix:
# os: [macos-13, macos-15, ubuntu-24.04, ubuntu-24.04-arm, windows-2022]
os: [macos-13, macos-14]
os: [macos-13, macos-15]
# node: [18, 20, 22, 23]
node: [20, 22]
steps:
Expand Down
Binary file added lib/native/darwin/arm64/20/MonoEmbedding.exe
Binary file not shown.
Binary file added lib/native/darwin/arm64/20/edge_nativeclr.node
Binary file not shown.
Binary file added lib/native/darwin/arm64/22/MonoEmbedding.exe
Binary file not shown.
Binary file added lib/native/darwin/arm64/22/edge_nativeclr.node
Binary file not shown.
Binary file added lib/native/darwin/x64/20/MonoEmbedding.exe
Binary file not shown.
Binary file added lib/native/darwin/x64/20/edge_nativeclr.node
Binary file not shown.
Binary file added lib/native/darwin/x64/22/MonoEmbedding.exe
Binary file not shown.
Binary file added lib/native/darwin/x64/22/edge_nativeclr.node
Binary file not shown.

0 comments on commit 17ae442

Please sign in to comment.