Skip to content

Commit

Permalink
chore: Reset
Browse files Browse the repository at this point in the history
  • Loading branch information
danmayr.joachim committed Jan 27, 2025
1 parent ea6aaa9 commit d995544
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/update-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ jobs:
needs:
- apply-patches
runs-on: ubuntu-22.04
if: false # This condition ensures the job is never executed

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -127,6 +128,7 @@ jobs:
needs:
- apply-patches
runs-on: macos-14
if: false # This condition ensures the job is never executed

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -185,6 +187,8 @@ jobs:
- name: Build with Conan
run: |
echo "C:/hostedtoolcache/windows/Python/3.10.11/x64/python3" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
python --version
if (Test-Path "C:\Users\runneradmin\.conan2\profiles\default") {
Write-Host "Loaded from cache!"
} else {
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,6 @@ To get the dependency graph execute:
conan install . --profile profiles/profile_linux --output-folder=build --build=missing --format=json > build.json
conan remote add imageclibs https://imagec.org:4431/artifactory/api/conan/imageclibs
conan graph info . -r=imageclibs --format=html > graph.html
```
```

git diff --no-index Utils_a.cc Utils.cc > utils.patch
2 changes: 2 additions & 0 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ def requirements(self):
#self.requires("libxlsxwriter/1.1.8")
#self.requires("duckdb/1.1.0")
#self.requires("onnx/1.17.0")
self.requires("sleef/3.6.1")
self.requires("libtorch/2.4.0")
#self.requires("tensorflow-lite/2.15.0")
self.requires("protobuf/3.21.12", override=True)
#self.requires("xkbcommon/1.6.0", override=True)
#self.requires("libpq/15.5", override=True)
Expand Down

0 comments on commit d995544

Please sign in to comment.