Skip to content

Commit 4d791d6

Browse files
committed
Experiment with action cache
Signed-off-by: Raasz, Pawel <pawel.raasz@intel.com>
1 parent 38c4962 commit 4d791d6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/linux.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
run: python3 -m pip install -r ${OPENVINO_REPO}/src/bindings/python/wheel/requirements-dev.txt
100100

101101
- name: Setup ccache
102-
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
102+
uses: actions/cache@v4 # v4.0.2
103103
with:
104104
# Should save cache only if run in the master branch of the base repo
105105
# github.ref_name is 'ref/PR_#' in case of the PR, and 'branch_name' when executed on push
@@ -156,7 +156,7 @@ jobs:
156156
run: |
157157
source ${INSTALL_DIR}/setupvars.sh
158158
gradle clean build --info
159-
159+
160160
for d in CPU HETERO:CPU; do
161161
gradle test -Prun_tests -DMODELS_PATH=${TEST_DATA} -Ddevice=$d --info;
162162
done
@@ -177,7 +177,7 @@ jobs:
177177
pushd ${INSTALL_DIR}
178178
tar -czvf ${BUILD_DIR}/openvino_package.tar.gz *
179179
popd
180-
180+
181181
pushd ${DEVELOPER_PACKAGE_DIR}
182182
tar -czvf ${BUILD_DIR}/openvino_developer_package.tar.gz *
183183
popd
@@ -265,7 +265,7 @@ jobs:
265265
pushd ${INSTALL_DIR}
266266
tar -xzf openvino_package.tar.gz -C ${INSTALL_DIR}
267267
popd
268-
268+
269269
pushd ${INSTALL_DIR}
270270
tar -xzf openvino_developer_package.tar.gz -C ${INSTALL_DIR}
271271
popd
@@ -285,7 +285,7 @@ jobs:
285285
apt -y --no-install-recommends install software-properties-common curl
286286
287287
- name: Setup ccache
288-
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
288+
uses: actions/cache@v4
289289
with:
290290
# Should save cache only if run in the master branch of the base repo
291291
# github.ref_name is 'ref/PR_#' in case of the PR, and 'branch_name' when executed on push

0 commit comments

Comments
 (0)