Skip to content

Commit

Permalink
Add macOS 13 to CI-CD (#197)
Browse files Browse the repository at this point in the history
  • Loading branch information
imnasnainaec authored Jun 14, 2024
1 parent 986c19f commit 796b6d3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI-CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ jobs:
name: "Build and Test"
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-12]
os: [windows-latest, ubuntu-latest, macos-12, macos-13]
runs-on: ${{ matrix.os }}

steps:
- name: Install MacPorts
if: ${{ matrix.os == 'macos-12' }}
if: ${{ matrix.os == 'macos-12' || matrix.os == 'macos-13' }}
uses: melusina-org/setup-macports@v1

- name: Install icu4c on macOS
if: ${{ matrix.os == 'macos-12' }}
if: ${{ matrix.os == 'macos-12' || matrix.os == 'macos-13' }}
run: |
sudo port -v install icu
echo "DYLD_FALLBACK_LIBRARY_PATH=$HOME/lib:/usr/local/lib:/usr/lib:/opt/local/lib" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Sample code:

## Building

To build the current version of icu-dotnet you'll need .net 8.0 installed.
To build the current version of icu-dotnet you'll need .NET 8.0 installed.

icu-dotnet can be built from the command line as well as Visual Studio or JetBrains Rider.

Expand Down

0 comments on commit 796b6d3

Please sign in to comment.