Skip to content

Commit 23f4433

Browse files
committed
trying stuff
1 parent a92d1cf commit 23f4433

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/jingle_python.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ jobs:
4949
. .z3env
5050
echo "✅ Loaded Z3_SYS_Z3_HEADER from .z3env"
5151
else
52-
ls /usr/local/include/z3/include
5352
echo "❌ .z3env not found. Please run the installer script first."
5453
fi
5554
# sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}

jingle_python/gh_actions_setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def install_z3_latest():
7979

8080
print("Installing headers and libraries to /usr/local...", file=sys.stderr)
8181
subprocess.run(['mkdir', '-p', '/usr/local/include/z3'], check=True)
82-
subprocess.run(['cp', include_dir + '/*', '/usr/local/include/z3'], check=True)
82+
subprocess.run(['cp', include_dir + '/*.h', '/usr/local/include/z3'], check=True)
8383
subprocess.run(['cp', os.path.join(lib_dir, 'libz3.so'), '/usr/local/lib/'], check=True)
8484
subprocess.run(['ldconfig'], check=True)
8585

0 commit comments

Comments
 (0)