We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae6a659 commit b957746Copy full SHA for b957746
.github/workflows/build.yml
@@ -27,8 +27,15 @@ jobs:
27
if: matrix.os == 'macos-latest'
28
run: brew install icu4c
29
30
+ - name: Cache vcpkg
31
+ uses: actions/cache@v3
32
+ with:
33
+ path: ${{ github.workspace }}/vcpkg
34
+ key: vcpkg-${{ runner.os }}-${{ hashFiles('**/vcpkg.json') }}
35
+
36
- name: Setup vcpkg
37
uses: lukka/run-vcpkg@v11
38
+ timeout-minutes: 15
39
with:
40
vcpkgDirectory: '${{ github.workspace }}/vcpkg'
41
vcpkgGitCommitId: '501db0f17ef6df184fcdbfbe0f87cde2313b6ab1'
@@ -100,4 +107,4 @@ jobs:
100
107
override: true
101
108
102
109
- name: Install ICU
103
- run: sudo apt-get install -y libicu-dev
110
+ run: sudo apt-get install -y libicu-dev
0 commit comments