Added CBC solver installation step using apt-get #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish eggwrap to PyPI | |
on: push | |
jobs: | |
build: | |
name: Build eggwrap | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
name: Setup rust toolchain | |
- name: Install pypa/build and maturin | |
run: >- | |
python3 -m | |
pip install | |
build maturin | |
--user | |
- name: Install CBC Solver | |
run: sudo apt-get install -y coinor-cbc coinor-libcbc-dev | |
- name: Build with maturin | |
uses: PyO3/maturin-action@v1 | |
with: | |
command: build | |
args: --release | |