Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

💚 Simplified CI #266

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,6 @@ jobs:
with:
submodules: recursive

- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.13.x'

# Remove existing 2to3 binary
- name: Remove existing 2to3 binary
run: sudo rm /usr/local/bin/2to3 || true
Expand Down Expand Up @@ -97,16 +92,6 @@ jobs:
cmake ${{github.workspace}}
-DCMAKE_CXX_COMPILER=${{matrix.compiler}}
-DCMAKE_BUILD_TYPE=Release
-DFICTION_ENABLE_UNITY_BUILD=ON
-DFICTION_ENABLE_PCH=ON
-DFICTION_CLI=OFF
-DFICTION_TEST=OFF
-DFICTION_EXPERIMENTS=OFF
-DFICTION_Z3=OFF
-DFICTION_ALGLIB=ON
-DFICTION_PROGRESS_BARS=OFF
-DFICTION_WARNINGS_AS_ERRORS=OFF
-DMOCKTURTLE_EXAMPLES=OFF
-DMNT_SIQAD_PLUGINS_TEST=ON

- name: Build
Expand Down
10 changes: 0 additions & 10 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,16 +91,6 @@ jobs:
cmake ${{github.workspace}}
-DCMAKE_CXX_COMPILER=${{matrix.compiler}}
-DCMAKE_BUILD_TYPE=Release
-DFICTION_ENABLE_UNITY_BUILD=ON
-DFICTION_ENABLE_PCH=ON
-DFICTION_CLI=OFF
-DFICTION_TEST=OFF
-DFICTION_EXPERIMENTS=OFF
-DFICTION_Z3=OFF
-DFICTION_ALGLIB=ON
-DFICTION_PROGRESS_BARS=OFF
-DFICTION_WARNINGS_AS_ERRORS=OFF
-DMOCKTURTLE_EXAMPLES=OFF
-DMNT_SIQAD_PLUGINS_TEST=ON

- name: Build
Expand Down
10 changes: 0 additions & 10 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,16 +78,6 @@ jobs:
cmake ${{github.workspace}} -G "${{matrix.env}}" -A x64 -T ${{matrix.toolset}}
-DCMAKE_CXX_COMPILER=${{matrix.compiler}}
-DCMAKE_BUILD_TYPE=Release
-DFICTION_ENABLE_UNITY_BUILD=ON
-DFICTION_ENABLE_PCH=ON
-DFICTION_CLI=OFF
-DFICTION_TEST=OFF
-DFICTION_EXPERIMENTS=OFF
-DFICTION_Z3=OFF
-DFICTION_ALGLIB=ON
-DFICTION_PROGRESS_BARS=OFF
-DFICTION_WARNINGS_AS_ERRORS=OFF
-DMOCKTURTLE_EXAMPLES=OFF
-DMNT_SIQAD_PLUGINS_TEST=ON
env:
BOOST_ROOT: ${{steps.install-boost.outputs.BOOST_ROOT}}
Expand Down
2 changes: 0 additions & 2 deletions test/interface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ TEST_CASE("Test if reading, simulating, and creating a result-file works for Qui
CHECK(std::filesystem::exists(fmt::format("{}/sim_result_0.xml", TEST_PATH)));
}

#if (FICTION_ALGLIB_ENABLED)
TEST_CASE("Test if reading, simulating, and creating a result-file works for ClusterComplete", "[interface]")
{
auto sim_interface = siqad_plugin_interface{fmt::format("{}/clustercomplete_problem_0.xml", TEST_PATH),
Expand Down Expand Up @@ -145,4 +144,3 @@ TEST_CASE("Test if reading, simulating, and creating a result-file works for Clu

CHECK(std::filesystem::exists(fmt::format("{}/sim_result_0.xml", TEST_PATH)));
}
#endif // FICTION_ALGLIB_ENABLED
Loading