From c75c1b335c6df67755a7a7b2f1f7873749df7980 Mon Sep 17 00:00:00 2001 From: Ted Ralphs Date: Fri, 25 Mar 2022 14:59:06 -0400 Subject: [PATCH] Need to build Cbc in order to get sdist --- .github/workflows/cibuildwheel.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cibuildwheel.yml b/.github/workflows/cibuildwheel.yml index a3e594b8..4e6cf7f3 100644 --- a/.github/workflows/cibuildwheel.yml +++ b/.github/workflows/cibuildwheel.yml @@ -17,7 +17,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-20.04, windows-2019, macos-10.15] + os: [ubuntu-20.04, macos-10.15] steps: - uses: actions/checkout@v2 @@ -35,6 +35,16 @@ jobs: steps: - uses: actions/checkout@v2 + - name: Checkout coinbrew + uses: actions/checkout@v2 + with: + repository: coin-or/coinbrew + path: coinbrew + - name: Build Cbc + run: | + bash coinbrew/coinbrew build Cbc@2.10.7 -j 16 + export COIN_INSTALL_DIR=dist + - name: Build sdist run: pipx run build --sdist