Skip to content

Commit abf1d14

Browse files
committed
Add macOS 13 and 14 to CI-CD
1 parent 0342df4 commit abf1d14

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/CI-CD.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ jobs:
2323
name: "Build and Test"
2424
strategy:
2525
matrix:
26-
os: [windows-latest, ubuntu-latest, macos-12]
26+
os: [windows-latest, ubuntu-latest, macos-12, macos-13, macos-14]
2727
runs-on: ${{ matrix.os }}
2828

2929
steps:
3030
- name: Install MacPorts
31-
if: ${{ matrix.os == 'macos-12' }}
31+
if: ${{ matrix.os == 'macos-12' || matrix.os == 'macos-13' || matrix.os == 'macos-14' }}
3232
uses: melusina-org/setup-macports@v1
3333

3434
- name: Install icu4c on macOS
35-
if: ${{ matrix.os == 'macos-12' }}
35+
if: ${{ matrix.os == 'macos-12' || matrix.os == 'macos-13' || matrix.os == 'macos-14' }}
3636
run: |
3737
sudo port -v install icu
3838
echo "DYLD_FALLBACK_LIBRARY_PATH=$HOME/lib:/usr/local/lib:/usr/lib:/opt/local/lib" >> $GITHUB_ENV

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Sample code:
4040

4141
## Building
4242

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

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

0 commit comments

Comments
 (0)