We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 481eb23 commit eb8c4aeCopy full SHA for eb8c4ae
1 file changed
pyproject.toml
@@ -46,9 +46,10 @@ skip="pp* cp36* cp37* *musllinux*"
46
before-all = '''
47
#!/bin/bash
48
(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
+AARCH=$(uname -m)
+echo "------"
+echo $AARCH
52
+if [[ $AARCH == "aarch64" ]]; then
53
wget https://github.com/scipopt/scipoptsuite-deploy/releases/download/v0.8.0/libscip-linux-arm.zip -O scip.zip
54
else
55
wget https://github.com/scipopt/scipoptsuite-deploy/releases/download/v0.8.0/libscip-linux.zip -O scip.zip
0 commit comments