Skip to content

Commit

Permalink
circleci: use branch cache
Browse files Browse the repository at this point in the history
  • Loading branch information
luncliff committed Sep 27, 2023
1 parent e8e37ba commit ef22dea
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,11 @@ jobs:
Pop-Location
- restore_cache:
keys:
- v2338-downs-{{ .Branch }}
- v2338-downs-{{ checksum ".circleci/config.yml" }}
- restore_cache:
keys:
- v2338-bins-{{ .Branch }}
- v2338-bins-{{ checksum ".circleci/config.yml" }}
- run:
name: "Install: port-windows.txt"
Expand All @@ -114,15 +116,13 @@ jobs:
paths:
- C:/vcpkg-bins
- save_cache:
key: v2338-downs-{{ checksum ".circleci/config.yml" }}
key: v2338-downs-{{ .Branch }}
paths:
- C:/vcpkg-downs
when: always
- C:/vcpkg-bins
- save_cache:
key: v2338-bins-{{ checksum ".circleci/config.yml" }}
key: v2338-bins-{{ .Branch }}
paths:
- C:/vcpkg-bins
when: always
- store_artifacts:
name: "Upload buildtrees log"
path: vcpkg/buildtrees/ # buildtrees-log
Expand Down
2 changes: 1 addition & 1 deletion .circleci/port-windows.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
google-filament[gles3,test]:x64-windows
onnxruntime[directml,python,xnnpack,test]:x64-windows

0 comments on commit ef22dea

Please sign in to comment.