CI #142
This file contains hidden or 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 | |
| on: | |
| push: | |
| pull_request: | |
| schedule: | |
| - cron: "3 5 13 * *" | |
| workflow_dispatch: | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| build: | |
| name: build_cmake_${{ matrix.toolchain }} | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 10 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| toolchain: | |
| - linux-gcc | |
| - macos-clang | |
| - windows-msvc | |
| - windows-mingw | |
| configuration: | |
| - Debug | |
| include: | |
| - toolchain: linux-gcc | |
| os: ubuntu-latest | |
| compiler: gcc | |
| - toolchain: macos-clang | |
| os: macos-latest | |
| compiler: clang | |
| - toolchain: windows-msvc | |
| os: windows-latest | |
| compiler: msvc | |
| - toolchain: windows-mingw | |
| os: windows-latest | |
| compiler: mingw | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 5 | |
| - name: Configure | |
| run: | | |
| if [ "${{ matrix.toolchain }}" == "windows-msvc" ]; then | |
| cmake -S "$SRCDIR" -B build -DMODELICA_DEBUG_TIME_EVENTS=ON | |
| elif [ "${{ matrix.toolchain }}" == "windows-mingw" ]; then | |
| cmake -S "$SRCDIR" -B build -DMODELICA_DEBUG_TIME_EVENTS=ON -DCMAKE_BUILD_TYPE=${{ matrix.configuration }} -G "MinGW Makefiles" | |
| else | |
| cmake -S "$SRCDIR" -B build -DMODELICA_DEBUG_TIME_EVENTS=ON -DCMAKE_BUILD_TYPE=${{ matrix.configuration }} -DCMAKE_C_FLAGS="-Wall -Wextra" | |
| fi | |
| env: | |
| SRCDIR: ${{ github.workspace }}/ModelicaTableAdditions/Resources | |
| - name: Build with ${{ matrix.compiler }} | |
| run: | | |
| if [ "${{ matrix.toolchain }}" == "windows-msvc" ]; then | |
| cmake --build build --config ${{ matrix.configuration }} | |
| else | |
| cmake --build build -- -j8 | |
| fi | |
| - name: Run tests | |
| run: ctest --no-tests=error --test-dir build --build-config ${{ matrix.configuration }} --verbose | |
| - name: Install | |
| run: | | |
| if [ "${{ matrix.toolchain }}" == "windows-msvc" ]; then | |
| cmake --build build --target install --config ${{ matrix.configuration }} | |
| else | |
| cmake --build build --target install | |
| fi | |
| build_cmake_windows-cygwin: | |
| name: build_cmake_windows-cygwin | |
| runs-on: windows-latest | |
| timeout-minutes: 10 | |
| strategy: | |
| matrix: | |
| configuration: | |
| - Debug | |
| steps: | |
| - name: Set git to use LF | |
| run: git config --global core.autocrlf input | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 5 | |
| - name: Setup cygwin | |
| uses: cygwin/cygwin-install-action@master | |
| with: | |
| packages: >- | |
| cmake | |
| gcc-g++ | |
| make | |
| ninja | |
| - name: Configure | |
| run: | | |
| export PATH=/usr/bin:$PATH | |
| cmake -S "$(cygpath ${SRCDIR})" -B build -DMODELICA_DEBUG_TIME_EVENTS=ON -DCMAKE_BUILD_TYPE=${{ matrix.configuration }} -G Ninja | |
| shell: C:\cygwin\bin\bash.exe -eo pipefail -o igncr '{0}' | |
| env: | |
| CYGWIN_NOWINPATH: 1 | |
| SRCDIR: ${{ github.workspace }}/ModelicaTableAdditions/Resources | |
| - name: Build with gcc | |
| run: | | |
| export PATH=/usr/bin:$PATH | |
| cmake --build build -- -j8 | |
| shell: C:\cygwin\bin\bash.exe -eo pipefail -o igncr '{0}' | |
| - name: Run tests | |
| run: | | |
| export PATH=/usr/bin:/usr/local/bin:$PATH | |
| ctest --no-tests=error --test-dir build --build-config ${{ matrix.configuration }} --verbose | |
| shell: C:\cygwin\bin\bash.exe -eo pipefail -o igncr '{0}' | |
| - name: Install | |
| run: | | |
| export PATH=/usr/bin:$PATH | |
| cmake --build build --target install --config ${{ matrix.configuration }} | |
| shell: C:\cygwin\bin\bash.exe -eo pipefail -o igncr '{0}' | |
| html_documentation_checks: | |
| timeout-minutes: 5 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 5 | |
| - name: Setup python environment | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.13 | |
| - name: Install python packages | |
| run: | | |
| pip install --disable-pip-version-check --user pytidylib | |
| pip install --disable-pip-version-check --user futures | |
| - name: Build html tidy | |
| run: | | |
| git clone --branch 5.8.0 --depth=1 https://github.com/htacg/tidy-html5.git | |
| pushd tidy-html5 | |
| cmake -DCMAKE_POLICY_VERSION_MINIMUM=3.5 . | |
| make | |
| sudo make install | |
| popd | |
| sudo ldconfig | |
| - name: Tidy html | |
| run: | | |
| echo "::add-matcher::./.github/tidyHTML.json" | |
| python ./.CI/check_html.py tidyHTML ./ | |
| echo "::remove-matcher owner=tidyHTML::" | |
| - name: Check tags | |
| run: | | |
| echo "::add-matcher::./.github/checkTags.json" | |
| python ./.CI/check_html.py checkTags ./ | |
| echo "::remove-matcher owner=checkTags::" | |
| syntax_checks: | |
| timeout-minutes: 5 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 5 | |
| - name: Get moparser | |
| run: git clone --depth=1 https://github.com/modelica-tools/ModelicaSyntaxChecker | |
| - name: Check file encoding | |
| run: "! find . -name '*.mo' -exec bash -c 'iconv -o /dev/null -f utf8 -t utf8 \"{}\" |& sed \"s,^,{}: ,\"' ';' | grep '.'" | |
| - name: Check for UTF-8 BOM | |
| run: "! find . -name '*.mo' -print0 | xargs -0 grep -l $'^\\xEF\\xBB\\xBF' | grep ." | |
| - name: Check syntax | |
| run: | | |
| echo "::add-matcher::./.github/moparser.json" | |
| ModelicaSyntaxChecker/Linux64/moparser -v 3.4 -r ModelicaTableAdditions | |
| echo "::remove-matcher owner=moparser::" | |
| deprecation_checks: | |
| timeout-minutes: 5 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 5 | |
| - name: Setup python environment | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.13 | |
| - name: Check deprecated Text.lineColor annotation | |
| run: | | |
| echo "::add-matcher::./.github/check_deprecated_line_color.json" | |
| python ./.CI/check_deprecated_line_color.py ./ | |
| echo "::remove-matcher owner=check_deprecated_line_color::" |