mirror of
https://github.com/Z3Prover/z3
synced 2025-12-25 13:36:53 +00:00
Simplify CI workflow by removing emscripten steps
Removed unnecessary steps for emscripten setup and TypeScript/WASM build in the CI workflow.
This commit is contained in:
parent
9ffc7e4b80
commit
04d9504cc3
1 changed files with 2 additions and 26 deletions
28
.github/workflows/docs.yml
vendored
28
.github/workflows/docs.yml
vendored
|
|
@ -33,31 +33,7 @@ jobs:
|
|||
- name: Install system dependencies
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y doxygen graphviz python3 python3-pip
|
||||
|
||||
- name: Setup emscripten
|
||||
uses: mymindstorm/setup-emsdk@v14
|
||||
with:
|
||||
version: ${{env.EM_VERSION}}
|
||||
actions-cache-folder: "emsdk-cache"
|
||||
|
||||
- name: Install dependencies
|
||||
working-directory: src/api/js
|
||||
run: npm ci
|
||||
|
||||
- name: Build TypeScript
|
||||
working-directory: src/api/js
|
||||
run: npm run build:ts
|
||||
|
||||
- name: Build wasm
|
||||
working-directory: src/api/js
|
||||
run: |
|
||||
emsdk install ${EM_VERSION}
|
||||
emsdk activate ${EM_VERSION}
|
||||
source $(dirname $(which emsdk))/emsdk_env.sh
|
||||
which node
|
||||
which clang++
|
||||
npm run build:wasm
|
||||
sudo apt-get install -y doxygen graphviz python3 python3-pip
|
||||
|
||||
- name: Build Z3 natively for Python documentation
|
||||
run: |
|
||||
|
|
@ -67,7 +43,7 @@ jobs:
|
|||
|
||||
- name: Generate Documentation (from doc directory)
|
||||
working-directory: doc
|
||||
run: python3 mk_api_doc.py --js --output-dir=api
|
||||
run: python3 mk_api_doc.py --output-dir=api
|
||||
|
||||
- name: Setup Pages
|
||||
uses: actions/configure-pages@v5
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue