Add petscii_lowercase string encoding. #130
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: build | |
on: [push] | |
permissions: | |
contents: read | |
jobs: | |
all: | |
runs-on: ${{ matrix.os }} | |
name: ${{ matrix.os }}${{ matrix.name_extra }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest, ubuntu-latest] | |
cmake_extra: [""] | |
name_extra: [""] | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: install python and pip | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: install dependencies (Windows) | |
if: ${{ runner.os == 'Windows' }} | |
uses: ilammy/[email protected] | |
- name: prepare build directory and install nihtest | |
run: | | |
cmake -E make_directory ${{runner.workspace}}/build | |
pip install nihtest | |
- name: configure (Unix) | |
if: ${{ runner.os != 'Windows' }} | |
working-directory: ${{runner.workspace}}/build | |
run: | | |
cmake ${{ matrix.cmake_extra }} ${{github.workspace}} | |
- name: configure (Windows) | |
if: ${{ runner.os == 'Windows' }} | |
working-directory: ${{runner.workspace}}/build | |
run: | | |
cmake ${{ matrix.cmake_extra }} ${{github.workspace}} | |
- name: build | |
working-directory: ${{runner.workspace}}/build | |
run: | | |
cmake --build . --config Release | |
- name: test | |
working-directory: ${{runner.workspace}}/build | |
run: | | |
ctest --output-on-failure -v -C Release |