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 107a44c commit 6e58cfb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
8 changes: 3 additions & 5 deletions .github/actions/setup-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,16 +55,14 @@ runs:
if: inputs.os == 'macos-14' || inputs.os == 'macos-15'
shell: bash
run: |
brew install mono
brew install mono --overwrite
brew reinstall pkg-config
- name: Setup Mono
if: inputs.os == 'macos-13'
if: runner.os == 'Linux'
shell: bash
run: |
brew install mono --overwrite
brew install pkg-config --overwrite
apt install mono-complete pkg-config
- name: Versions
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/test-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ runs:
ignore_case: true

- name: Run .NET 4.5 tests
# if: runner.os == 'Windows'
if: inputs.os != 'macos-13'
shell: bash
run: node tools/test.js CI

Expand Down
4 changes: 2 additions & 2 deletions .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-15]
os: [macos-13, macos-15, ubuntu-24.04]
# node: [18, 20, 22, 23]
node: [20, 22]
steps:
Expand All @@ -104,7 +104,7 @@ jobs:
# pip install setuptools

- name: Run .NET 4.5 tests
# if: runner.os == 'Windows'
if: matrix.os != 'macos-13' && runner.os != 'Linux'
shell: bash
run: node tools/test.js CI

Expand Down

0 comments on commit 6e58cfb

Please sign in to comment.