fixup! fixup! fixup! fixup! fixup! fixup! add workflow to check compa… #15
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
# GitHub Actions for genCMPClient | |
# SPDX-License-Identifier: Apache-2.0 | |
# Copyright (c) Siemens AG, 2021-2024 | |
name: macOS | |
on: push | |
jobs: | |
cmake: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: make | |
run: | | |
make -f Makefile_v1 | |
./cmpClient -help | |
make -f Makefile_v1 clean_all | |
- name: cmake | |
run: | | |
cmake . | |
make | |
./cmpClient -help | |
mkdir build | |
cd build | |
cmake -S .. -B . | |
cmake --build . | |
cmake -DCMAKE_BUILD_TYPE=Release .. | |
make clean build | |
cd .. | |
mkdir build-with-libcmp | |
cd build-with-libcmp | |
USE_LIBCMP=1 cmake -S .. -B . | |
make clean build | |
DESTDIR=tmp make install uninstall | |
cd .. |