Skip to content

Commit

Permalink
CMake cache
Browse files Browse the repository at this point in the history
  • Loading branch information
metab0t committed Jan 28, 2024
1 parent 5f5bffa commit 909a2d5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/doc-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,15 @@ jobs:
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
- name: Cache CMake build
id: cache-cmake-linux
uses: actions/cache@v4
env:
cache-name: cache-cmake-linux
with:
path: build
key: ${{ runner.os }}-cmake-build-${{ env.cache-name }}-${{ hashFiles('CMakeLists.txt') }}

- if: ${{ steps.cache-installers-linux.outputs.cache-hit != 'true' }}
name: Download Installers
run: |
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
sphinx
myst-parser
sphinx-copybutton
furo
furo
2 changes: 1 addition & 1 deletion docs/source/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The key features of PyOptInterface include:
- Unified API to cover common usages, write once and the code works for all optimizers
- You still have escape hatch to query or modify solver-specific parameter/attribute/information for different optimizers directly like the vendored Python binding of optimizer

### What kind of problems can PyOptInterface solve?
### What kind of problems can PyOptInterface solve?
It currently supports the following problem types:
- Linear Programming (LP)
- Mixed-Integer Linear Programming (MILP)
Expand Down

0 comments on commit 909a2d5

Please sign in to comment.