forked from Z3Prover/z3
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #205 from VeriFIT/new_z3_4.13.4
Update Z3 to 4.13.4
- Loading branch information
Showing
624 changed files
with
36,284 additions
and
13,924 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: MSVC Clang-CL Static Build | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
permissions: | ||
contents: read # to fetch code (actions/checkout) | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-2019 | ||
env: | ||
BUILD_TYPE: Release | ||
steps: | ||
- name: Checkout Repo | ||
uses: actions/checkout@v4 | ||
|
||
- name: Build | ||
run: | | ||
cmake -B build -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} -DZ3_BUILD_LIBZ3_SHARED=OFF -DZ3_BUILD_LIBZ3_MSVC_STATIC=ON -T ClangCL -DCMAKE_C_FLAGS="/EHsc" -DCMAKE_CXX_FLAGS="/EHsc" | ||
cmake --build build --config ${{ env.BUILD_TYPE }} --parallel | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
name: Pyodide Build | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
|
||
env: | ||
BUILD_TYPE: Release | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-24.04 | ||
|
||
strategy: | ||
fail-fast: false | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup packages | ||
run: sudo apt-get update && sudo apt-get install -y python3-dev python3-pip python3-venv | ||
|
||
- name: Create venv | ||
run: python3 -m venv ~/env | ||
|
||
- name: Install pyodide | ||
run: ~/env/bin/pip install pyodide-build pyodide-cli | ||
|
||
- name: Configure CMake and build | ||
run: | | ||
git clone https://github.com/emscripten-core/emsdk.git ~/emsdk | ||
cd ~/emsdk && PYODIDE_EMSCRIPTEN_VERSION=$(~/env/bin/pyodide config get emscripten_version) | ||
./emsdk install ${PYODIDE_EMSCRIPTEN_VERSION} | ||
./emsdk activate ${PYODIDE_EMSCRIPTEN_VERSION} | ||
- name: Build Z3 | ||
run: | | ||
source ~/emsdk/emsdk_env.sh | ||
cd src/api/python | ||
CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" CXXFLAG="${CXXFLAGS}" ~/env/bin/pyodide build --exports whole_archive | ||
env: | ||
CFLAGS: "-fexceptions -s DISABLE_EXCEPTION_CATCHING=0 -g2" | ||
LDFLAGS: "-fexceptions -s WASM_BIGINT" | ||
CXXFLAGS: "-fexceptions -s DISABLE_EXCEPTION_CATCHING=0" | ||
|
||
- name: Setup env-pyodide | ||
run: | | ||
source ~/env/bin/activate | ||
source ~/emsdk/emsdk_env.sh | ||
pyodide venv ~/env-pyodide | ||
- name: Setup z3 wheel | ||
run: | | ||
~/env-pyodide/bin/pip install src/api/python/dist/*.whl | ||
~/env-pyodide/bin/python - <src/api/python/z3test.py z3 | ||
- name: Package wheel | ||
uses: actions/upload-artifact@master | ||
with: | ||
name: pyodide-wheel | ||
path: src/api/python/dist/*.whl | ||
retention-days: 1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
**/genaiscript.d.ts | ||
**/package-lock.json | ||
**/yarn.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.