You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Restore from cache the previously built ports. If a "cache miss" occurs, then vcpkg is bootstrapped. Since a the vcpkg.json is being used later on to install the packages when run-cmake runs, no packages are installed at this time and the input 'setupOnly:true' is mandatory.
93
+
- name: vcpkg - Setup dependencies
94
+
uses: lukka/run-vcpkg@v7
95
+
with:
96
+
# Just install vcpkg for now, do not install any ports in this step yet.
97
+
setupOnly: false
98
+
# Location of the vcpkg submodule in the Git repository.
99
+
vcpkgDirectory: ${{ env.vcpkgDir }}
100
+
vcpkgGitCommitId: ${{ env.COMMIT_ID }}
101
+
vcpkgArguments: >
102
+
boost-accumulators
103
+
boost-algorithm boost-container
104
+
boost-date-time
105
+
boost-exception
106
+
boost-filesystem
107
+
boost-foreach
108
+
boost-iterator
109
+
boost-lexical-cast
110
+
boost-math
111
+
boost-mpl
112
+
boost-multi-array
113
+
boost-ptr-container
114
+
boost-program-options
115
+
boost-serialization
116
+
boost-spirit
117
+
boost-static-assert
118
+
boost-stacktrace
119
+
boost-test
120
+
boost-thread
121
+
boost-throw-exception
122
+
boost-timer
123
+
boost-type-traits
124
+
boost-unordered
125
+
opencv
126
+
tbb
127
+
eigen3
128
+
vcpkgTriplet: x64-windows
129
+
# doNotCache: true
130
+
# This is used to unbreak cached artifacts if for some reason dependencies fail to build,
131
+
# the action does not notice it and saves broken artifacts.
0 commit comments