Skip to content

Move NodeJS package manager to pnpm #1672

Move NodeJS package manager to pnpm

Move NodeJS package manager to pnpm #1672

Workflow file for this run

name: build as C++ for S2E
on:
push:
branches:
- main
- develop
pull_request:
jobs:
build_s2e_mockup:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
example:
- mobc
- subobc
steps:
- uses: actions/[email protected]
- name: setup
shell: cmd
run: ./setup.bat
- name: cmake
working-directory: ./examples/${{ matrix.example }}/src/s2e_mockup
run: |
mkdir build
cd build
cmake --version
cmake .. -A Win32
- name: build
working-directory: ./examples/${{ matrix.example }}/src/s2e_mockup/build
run: cmake --build .