mirror of
https://github.com/Z3Prover/z3
synced 2025-12-28 23:13:20 +00:00
merge
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
429771e5b7
commit
8cc1d12555
1 changed files with 11 additions and 10 deletions
21
.github/workflows/docs.yml
vendored
21
.github/workflows/docs.yml
vendored
|
|
@ -35,28 +35,24 @@ jobs:
|
|||
sudo apt-get update
|
||||
sudo apt-get install -y doxygen graphviz python3
|
||||
|
||||
- name: Build Z3 for ubuntu-latest x64
|
||||
run: |
|
||||
python3 scripts/mk_make.py
|
||||
cd build
|
||||
make -j$(nproc)
|
||||
|
||||
- name: Setup emscripten
|
||||
uses: mymindstorm/setup-emsdk@v14
|
||||
working-directory: src/api/js
|
||||
with:
|
||||
no-install: true
|
||||
version: ${{env.EM_VERSION}}
|
||||
actions-cache-folder: "emsdk-cache"
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
working-directory: src/api/js
|
||||
run: npm ci
|
||||
|
||||
- name: Build TypeScript
|
||||
run: npm run build:ts
|
||||
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}
|
||||
|
|
@ -64,8 +60,13 @@ jobs:
|
|||
which node
|
||||
which clang++
|
||||
npm run build:wasm
|
||||
working-directory: src/api/js
|
||||
|
||||
|
||||
- name: Build Z3 for ubuntu-latest x64
|
||||
run: |
|
||||
python3 scripts/mk_make.py
|
||||
cd build
|
||||
make -j$(nproc)
|
||||
|
||||
- name: Generate Documentation (from doc directory)
|
||||
working-directory: doc
|
||||
run: |
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue