Skip to content

Allow :lisp / :lisp-quiet not only as lower case. #3026

Allow :lisp / :lisp-quiet not only as lower case.

Allow :lisp / :lisp-quiet not only as lower case. #3026

name: compile_cygwin
on: [push]
permissions:
contents: read
jobs:
setup_cygwin:
runs-on: windows-latest
steps:
- name: setup_cygwin
uses: cygwin/cygwin-install-action@v4
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 ..