Skip to content

Commit

Permalink
Disable cache temporaily
Browse files Browse the repository at this point in the history
Signed-off-by: utzcoz <utzcoz@outlook.com>
  • Loading branch information
utzcoz committed Dec 11, 2021
1 parent fd72b1a commit e7488e3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_native_runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,15 @@ jobs:
key: ${{ runner.os }}-${{ runner.arch }}-icu-${{ hashFiles('nativeruntime/external/icu/**') }}

- name: Build ICU for MacOS
if: runner.os =='macOS' && steps.cache-icu.outputs.cache-hit != 'true'
if: runner.os =='macOS'
run: |
cd nativeruntime/external/icu/icu4c/source
./runConfigureICU MacOSX --enable-static --prefix=$HOME/icu-bin
make -j4
make install
- name: Build ICU for Linux
if: runner.os == 'Linux' && steps.cache-icu.outputs.cache-hit != 'true'
if: runner.os == 'Linux'
run: |
export CFLAGS="$CFLAGS -fPIC"
export CXXFLAGS="$CXXFLAGS -fPIC"
Expand All @@ -75,7 +75,7 @@ jobs:
make install
- name: Build ICU for Windows
if: runner.os == 'Windows' && steps.cache-icu.outputs.cache-hit != 'true'
if: runner.os == 'Windows'
shell: msys2 {0}
run: |
cd nativeruntime/external/icu/icu4c/source
Expand Down

0 comments on commit e7488e3

Please sign in to comment.