Skip to content

Commit 4f7ddb7

Browse files
Merge pull request #1428 from cctv130/dev-v1.0
fix github action
2 parents 5157c03 + 772353f commit 4f7ddb7

File tree

6 files changed

+1
-6
lines changed

6 files changed

+1
-6
lines changed

.github/workflows/codecov.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ jobs:
4949
run: |
5050
git clone https://github.com/bitwuzla/bitwuzla.git
5151
cd bitwuzla
52-
git checkout -b 0.7.0 0.7.0
5352
python ./configure.py --shared
5453
cd build
5554
sudo ninja install

.github/workflows/linux.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ jobs:
5252
run: |
5353
git clone https://github.com/bitwuzla/bitwuzla.git
5454
cd bitwuzla
55-
git checkout -b 0.7.0 0.7.0
5655
python ./configure.py --shared
5756
cd build
5857
sudo ninja install

.github/workflows/osx.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ jobs:
4343
run: |
4444
git clone https://github.com/bitwuzla/bitwuzla.git
4545
cd bitwuzla
46-
git checkout -b 0.7.0 0.7.0
4746
python ./configure.py --shared --prefix $(pwd)/install
4847
cd build
4948
sudo ninja install

Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ RUN echo "[+] Download, build and install Bitwuzla" && \
5656
cd /tmp && \
5757
git clone https://github.com/bitwuzla/bitwuzla.git && \
5858
cd bitwuzla && \
59-
git checkout -b 0.4.0 0.4.0 && \
6059
python3 ./configure.py --shared && \
6160
cd build && \
6261
ninja -j$(nproc) install

src/scripts/docker/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ RUN echo "[+] Download, build and install Bitwuzla" && \
3030
cd $DEPENDENCIES_DIR && \
3131
git clone https://github.com/bitwuzla/bitwuzla.git && \
3232
cd bitwuzla && \
33-
git checkout -b 0.7.0 0.7.0 && \
3433
export PY310_PATH=$(python3.10 -c 'import sys, os; print(os.path.dirname(sys.executable))') && \
3534
CC=clang CXX=clang++ PATH=$PATH:$PY310_PATH python3.10 ./configure.py --shared --prefix $(pwd)/install && \
3635
cd build && \

src/scripts/docker/build-wheel-linux.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ echo "[+] Build Triton wheel package for Python 3.13"
9191
cd $SOURCE_DIR
9292
rm -rf $SOURCE_DIR/build
9393
rm -rf $SOURCE_DIR/triton_library.egg-info
94-
export PYTHON_BINARY=/opt/_internal/cpython-3.13.5/bin/python
94+
export PYTHON_BINARY=$(ls -d /opt/_internal/cpython-3.13.*/bin/python | sort | head -n1)
9595
export PYTHON_INCLUDE_DIRS=$($PYTHON_BINARY -c "from sysconfig import get_paths; print(get_paths()['include'])")
9696
export PYTHON_LIBRARY=$($PYTHON_BINARY -c "from sysconfig import get_paths; print(get_paths()['include'])")
9797

0 commit comments

Comments
 (0)