Skip to content

Commit

Permalink
ICU-22233 Fix CI cache name for Bazel build
Browse files Browse the repository at this point in the history
  • Loading branch information
echeran committed Jan 17, 2023
1 parent e7530bd commit 1b292fa
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/icu_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -490,11 +490,15 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: bazelbuild/setup-bazelisk@v1
- name: Get CI Linux runner VM version
id: linux-version
run: |
echo "LINUX_VERSION=$(grep -F VERSION_ID /etc/os-release | cut -d'"' -f2)" >> $GITHUB_OUTPUT
- name: Mount bazel cache
uses: actions/cache@v2
with:
path: "~/.cache/bazel"
key: ${{ runner.os }}-bazel
key: bazel-${{ runner.os }}-${{ steps.linux-version.outputs.LINUX_VERSION }}

- name: Generate the data
run: |
Expand Down

0 comments on commit 1b292fa

Please sign in to comment.