|
|
@ -1,5 +1,6 @@
|
|
|
|
# Examples
|
|
|
|
# Examples
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- [C++ - Conan](#c---conan)
|
|
|
|
- [C# - NuGet](#c---nuget)
|
|
|
|
- [C# - NuGet](#c---nuget)
|
|
|
|
- [Clojure - Lein Deps](#clojure---lein-deps)
|
|
|
|
- [Clojure - Lein Deps](#clojure---lein-deps)
|
|
|
|
- [D - DUB](#d---dub)
|
|
|
|
- [D - DUB](#d---dub)
|
|
|
@ -39,6 +40,55 @@
|
|
|
|
- [Swift, Objective-C - CocoaPods](#swift-objective-c---cocoapods)
|
|
|
|
- [Swift, Objective-C - CocoaPods](#swift-objective-c---cocoapods)
|
|
|
|
- [Swift - Swift Package Manager](#swift---swift-package-manager)
|
|
|
|
- [Swift - Swift Package Manager](#swift---swift-package-manager)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## C++ - Conan
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Using [Conan Lockfiles](https://docs.conan.io/en/latest/versioning/lockfiles.html):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
|
|
|
|
- name: create conan cache keys
|
|
|
|
|
|
|
|
run: |
|
|
|
|
|
|
|
|
conan lock create conanfile.py --build missing
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- uses: actions/cache@v3
|
|
|
|
|
|
|
|
with:
|
|
|
|
|
|
|
|
path: |
|
|
|
|
|
|
|
|
~/.conan/data
|
|
|
|
|
|
|
|
key: conan-${{ hashFiles('conan.lock') }}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
run: |
|
|
|
|
|
|
|
|
conan install . --lockfile conan.lock --build missing
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
For Windows, use
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
|
|
|
|
- uses: actions/cache@v3
|
|
|
|
|
|
|
|
if: runner.os == 'Windows'
|
|
|
|
|
|
|
|
with:
|
|
|
|
|
|
|
|
path: |
|
|
|
|
|
|
|
|
~/.conan/data
|
|
|
|
|
|
|
|
C:/.conan
|
|
|
|
|
|
|
|
key: conan-${{ hashFiles('conan.lock') }}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Using a custom cache location, and a profile as a partial cache key:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
|
|
|
|
env:
|
|
|
|
|
|
|
|
CONAN_USER_HOME: /tmp/
|
|
|
|
|
|
|
|
PROFILE: my_profile
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- name: create lockfile
|
|
|
|
|
|
|
|
run: |
|
|
|
|
|
|
|
|
conan lock create conanfile.py -pr $PROFILE --build missing
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- uses: actions/cache@v3
|
|
|
|
|
|
|
|
with:
|
|
|
|
|
|
|
|
path: |
|
|
|
|
|
|
|
|
${{ env.CONAN_USER_HOME }}/.conan/data
|
|
|
|
|
|
|
|
key: conan-${{ env.PROFILE }}-${{ hashFiles('conan.lock') }}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
## C# - NuGet
|
|
|
|
## C# - NuGet
|
|
|
|
|
|
|
|
|
|
|
|
Using [NuGet lock files](https://docs.microsoft.com/nuget/consume-packages/package-references-in-project-files#locking-dependencies):
|
|
|
|
Using [NuGet lock files](https://docs.microsoft.com/nuget/consume-packages/package-references-in-project-files#locking-dependencies):
|
|
|
|