Add CMake configuration for external C-Sources #1305
Workflow file for this run
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 | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
external_c_checks: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 5 | |
- name: Build libraries | |
run: | | |
rm -rf Modelica/Resources/Library/* | |
mkdir -p Modelica/Resources/Library/$LIBDIR | |
pushd Modelica/Resources/BuildProjects/autotools | |
git clean -fdx . | |
./autogen.sh | |
./configure --libdir="$PWD/../../Library/$LIBDIR" --enable-static --disable-shared --enable-static-zlib --disable-hdf5 CPPFLAGS="-I${GITHUB_WORKSPACE}/.CI/Test" | |
make --output-sync | |
sudo make install | |
popd | |
env: | |
LIBDIR: linux64 | |
- name: Run tests | |
run: | | |
cd .CI/Test | |
./test.sh onlystatic | |
env: | |
LIBDIR: linux64 | |
CC: gcc | |
external_c_checks_cmake: | |
name: external_c_checks_cmake_${{ matrix.toolchain }} | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 5 | |
strategy: | |
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 code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 5 | |
- name: Build libraries with ${{ matrix.compiler }} | |
run: | | |
if [ "${{ matrix.compiler }}" == "msvc" ]; then | |
cmake -S "$SRCDIR" -B build -DMODELICA_UTILITIES_INCLUDE_DIR="$TESTDIR" -DMODELICA_DEBUG_TIME_EVENTS=ON | |
cmake --build build --config ${{ matrix.configuration }} | |
elif [ "${{ matrix.compiler }}" == "mingw" ]; then | |
cmake -S "$SRCDIR" -B build -DMODELICA_UTILITIES_INCLUDE_DIR="$TESTDIR" -DMODELICA_DEBUG_TIME_EVENTS=ON -DCMAKE_BUILD_TYPE=${{ matrix.configuration }} -G "MinGW Makefiles" | |
cmake --build build | |
else | |
cmake -S "$SRCDIR" -B build -DMODELICA_UTILITIES_INCLUDE_DIR="$TESTDIR" -DMODELICA_DEBUG_TIME_EVENTS=ON -DCMAKE_BUILD_TYPE=${{ matrix.configuration }} -DCMAKE_C_FLAGS="-std=c89 -Wall -Wextra" | |
cmake --build build | |
fi | |
env: | |
SRCDIR: ${{ github.workspace }}/Modelica/Resources/BuildProjects/CMake | |
TESTDIR: ${{ github.workspace }}/.CI/Test | |
- name: Run tests | |
run: ctest --test-dir build --build-config ${{ matrix.configuration }} --verbose --output-junit junit-${{ matrix.compiler }}.xml | |
- name: Upload test report | |
uses: actions/upload-artifact@v3 | |
if: always() # always run even if the previous step fails | |
with: | |
name: junit-test-results | |
path: '**/build/junit-*.xml' | |
retention-days: 1 | |
report: | |
needs: external_c_checks_cmake | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download test report | |
uses: dawidd6/action-download-artifact@v3 | |
with: | |
name: junit-test-results | |
workflow: ${{ github.event.workflow.id }} | |
run_id: ${{ github.event.workflow_run.id }} | |
- name: Publish test teport | |
uses: mikepenz/action-junit-report@v3 | |
with: | |
commit: ${{github.event.workflow_run.head_sha}} | |
report_paths: '**/build/junit-*.xml' | |
annotate_only: true | |
html_documentation_checks: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 5 | |
- name: Setup python environment | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.8 | |
- 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 . | |
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 code | |
uses: actions/checkout@v4 | |
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 Complex.mo Modelica ModelicaReference ModelicaServices ModelicaTest ModelicaTestConversion4.mo ModelicaTestOverdetermined.mo ObsoleteModelica4.mo | |
echo "::remove-matcher owner=moparser::" | |
deprecation_checks: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 5 | |
- name: Setup python environment | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.8 | |
- name: Check deprecated Text.lineColor annotation | |
run: | | |
echo "::add-matcher::./.github/check_deprecated_line_color.json" | |
python ./.CI/check_deprecated_line_color.py Complex.mo Modelica ModelicaReference ModelicaServices ModelicaTest ModelicaTestConversion4.mo ModelicaTestOverdetermined.mo | |
echo "::remove-matcher owner=check_deprecated_line_color::" |