Attempt at more modern CMake and updated github actions #151
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Windows (FLTK) | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
BUILD_TYPE: Release | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Get sources | |
uses: actions/checkout@v4 | |
- name: Get FLTK | |
uses: actions/checkout@v4 | |
with: | |
repository: fltk/fltk | |
path: fltk | |
- name: Get newt64 | |
uses: actions/checkout@v4 | |
with: | |
repository: MatthiasWM/NEWT64 | |
path: newt64 | |
- name: Compile FLTK | |
run: | | |
cmake -S fltk -B fltk/build -D FLTK_USE_SYSTEM_LIBJPEG=Off -D FLTK_USE_SYSTEM_ZLIB=Off -D FLTK_USE_SYSTEM_LIBPNG=Off -D FLTK_BUILD_TEST=Off -D FLTK_BUILD_GL=Off -D CMAKE_BUILD_TYPE=Release | |
cmake --build fltk/build --config Release | |
- name: Compile newt64 | |
run: | | |
cmake -S newt64 -B newt64/build -D CMAKE_BUILD_TYPE=Release | |
cmake --build newt64/build --config Release | |
- name: Configure | |
run: | | |
cmake -S . -B _Build_/Makefiles -D CMAKE_BUILD_TYPE=Release | |
- name: Compile Einstein | |
run: | | |
cmake --build _Build_/Makefiles --config Release | |
- name: Run tests | |
run: | | |
_Build_/Makefiles/Release/EinsteinTests |