Skip to content

Commit

Permalink
Remove configuration-test from CI
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickroberts committed Feb 12, 2025
1 parent 4b8b47b commit fe57ab2
Showing 1 changed file with 1 addition and 47 deletions.
48 changes: 1 addition & 47 deletions .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,52 +79,6 @@ jobs:
- name: Test Debug
run: ctest --test-dir build --build-config Debug

configuration-test:
runs-on: ubuntu-latest
strategy:
matrix:
design:
- description: Enum Flags
arg: -DBEMAN_ANY_VIEW_DESIGN=ENUM
- description: Range Traits
arg: -DBEMAN_ANY_VIEW_DESIGN=TRAITS
- description: Named Template Arguments
arg: -DBEMAN_ANY_VIEW_DESIGN=NAMED
option_name:
- description: Copyable
arg: -DBEMAN_ANY_VIEW_OPTION=COPYABLE
- description: Move-Only
arg: -DBEMAN_ANY_VIEW_OPTION=MOVE_ONLY
name: "CMake: ${{ matrix.design.description }} design with ${{ matrix.option_name.description }} option"
steps:
- uses: actions/checkout@v4
- name: Setup build environment
uses: lukka/get-cmake@latest
with:
cmakeVersion: ~3.25.0
ninjaVersion: ^1.11.1
- name: Print installed softwares
run: |
cmake --version
ninja --version
- name: Configure CMake
run: |
cmake -B build -S . -DCMAKE_CXX_STANDARD=20 ${{ matrix.design.arg }} ${{ matrix.option_name.arg }}
env:
CMAKE_GENERATOR: Ninja Multi-Config
- name: Build Release
run: |
# Portable commands only
cmake --build build --config Release --parallel --verbose
cmake --install build --config Release --prefix /opt/beman.any_view
ls -R /opt/beman.any_view
- name: Build Debug
run: |
# Portable commands only
cmake --build build --config Debug --parallel --verbose
cmake --install build --config Debug --prefix /opt/beman.any_view
ls -R /opt/beman.any_view
compiler-test:
runs-on: ubuntu-24.04
strategy:
Expand Down Expand Up @@ -197,7 +151,7 @@ jobs:

create-issue-when-fault:
runs-on: ubuntu-latest
needs: [ gtest-test, configuration-test, compiler-test ]
needs: [ gtest-test, compiler-test ]
if: failure() && github.event_name == 'schedule'
steps:
# See https://github.com/cli/cli/issues/5075
Expand Down

0 comments on commit fe57ab2

Please sign in to comment.