Skip to content

Commit

Permalink
Try with libicu-dev instead of DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Tzvetanov Grigorov <mgrigorov@apache.org>
  • Loading branch information
martin-g committed Oct 16, 2024
1 parent 754a31e commit fc7f844
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 16 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/test-lang-csharp-ARM.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

- name: Add libzstd
shell: bash
run: sudo apt-get install -y libzstd-dev
run: sudo apt-get install -y libzstd-dev libicu-dev

- name: Install .NET SDKs
uses: actions/setup-dotnet@v4
Expand All @@ -63,9 +63,7 @@ jobs:
run: ./build.sh lint

- name: Test
run: |
export DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1
./build.sh test
run: ./build.sh test

interop:
runs-on: ubuntu-latest
Expand All @@ -74,7 +72,7 @@ jobs:

- name: Add libzstd
shell: bash
run: sudo apt-get install -y libzstd-dev
run: sudo apt-get install -y libzstd-dev libicu-dev

- name: Install .NET SDKs
uses: actions/setup-dotnet@v4
Expand Down Expand Up @@ -125,9 +123,7 @@ jobs:
run: ./build.sh interop-data-generate

- name: Run Interop Tests
run: |
export DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1
./build.sh interop-data-test
run: ./build.sh interop-data-test

arm64:
name: C# on Linux ARM64
Expand Down
12 changes: 4 additions & 8 deletions .github/workflows/test-lang-csharp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

- name: Add libzstd
shell: bash
run: sudo apt-get install -y libzstd-dev
run: sudo apt-get install -y libzstd-dev libicu-dev

- name: Install .NET SDKs
uses: actions/setup-dotnet@v4
Expand All @@ -63,9 +63,7 @@ jobs:
run: ./build.sh lint

- name: Test
run: |
export DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1
./build.sh test
run: ./build.sh test

interop:
runs-on: ubuntu-latest
Expand All @@ -74,7 +72,7 @@ jobs:

- name: Add libzstd
shell: bash
run: sudo apt-get install -y libzstd-dev
run: sudo apt-get install -y libzstd-dev libicu-dev

- name: Install .NET SDKs
uses: actions/setup-dotnet@v4
Expand Down Expand Up @@ -125,6 +123,4 @@ jobs:
run: ./build.sh interop-data-generate

- name: Run Interop Tests
run: |
export DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1
./build.sh interop-data-test
run: ./build.sh interop-data-test

0 comments on commit fc7f844

Please sign in to comment.