Skip to content

Commit eb8c4ae

Browse files
committed
Test the architecture a different way
1 parent 481eb23 commit eb8c4ae

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,10 @@ skip="pp* cp36* cp37* *musllinux*"
4646
before-all = '''
4747
#!/bin/bash
4848
(apt-get update && apt-get install --yes wget) || yum install -y wget zlib libgfortran || brew install wget
49-
echo "--------"
50-
echo $CIBW_ARCHS
51-
if [[ $CIBW_ARCHS == "aarch64" ]]; then
49+
AARCH=$(uname -m)
50+
echo "------"
51+
echo $AARCH
52+
if [[ $AARCH == "aarch64" ]]; then
5253
wget https://github.com/scipopt/scipoptsuite-deploy/releases/download/v0.8.0/libscip-linux-arm.zip -O scip.zip
5354
else
5455
wget https://github.com/scipopt/scipoptsuite-deploy/releases/download/v0.8.0/libscip-linux.zip -O scip.zip

0 commit comments

Comments
 (0)