Skip to content

Repaired the Equations->Solve numerical->Find numerical solution" men… #3158

Repaired the Equations->Solve numerical->Find numerical solution" men…

Repaired the Equations->Solve numerical->Find numerical solution" men… #3158

name: compile_cygwin
on: [push]
permissions:
contents: read
jobs:
setup_cygwin:
runs-on: windows-latest
steps:
- name: setup_cygwin
uses: cygwin/cygwin-install-action@v5
with:
packages: cmake git libwx_baseu3.1-devel libwx_gtk3u3.1-devel gcc-core gcc-g++ make gettext-devel
- name: Checkout_git
run: git clone --depth 20 https://github.com/wxMaxima-developers/wxmaxima.git
- name: configure
run: |
mkdir build
cd build
cmake ../wxmaxima
cd ..
- name: compile
run: |
cd build
make VERBOSE=1 -j 4
cd ..