Skip to content
Merged
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
16 changes: 3 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,27 +16,20 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, ubuntu-20.04]
os: [ubuntu-latest]
build_type: [Debug, Release]
compiler: [g++, clang++, clang++-11, clang++-15]
compiler: [g++, clang++]
include:
- os: windows-latest
build_type: Debug
compiler: msvc
- os: windows-latest
build_type: Release
compiler: msvc
exclude:
- os: ubuntu-20.04
compiler: clang++-15

steps:
- name: Install packages
run: sudo apt install libmbedtls-dev doctest-dev clang-11
if: matrix.os == 'ubuntu-latest' || matrix.os == 'ubuntu-20.04'

- name: Install clang++-15
run: sudo apt install clang-15
run: sudo apt install libmbedtls-dev doctest-dev clang
if: matrix.os == 'ubuntu-latest'
Comment on lines 30 to 33
Copy link

Copilot AI Feb 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The steps list items are not indented under the steps: key (- name: is aligned with steps:). This makes the workflow YAML invalid and will prevent the CI workflow from being parsed/executed. Indent the list items (and all subsequent steps) one level under steps:.

Copilot uses AI. Check for mistakes.

- uses: actions/checkout@v4
Expand All @@ -49,9 +42,6 @@ jobs:
# access regardless of the host operating system
shell: bash
working-directory: ${{github.workspace}}/build/${{ matrix.build_type }}
# Note the current convention is to use the -S and -B options here to specify source
# and build directories, but this is only available with CMake 3.13 and higher.
# The CMake binaries on the Github Actions machines are (as of this writing) 3.12
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
cmake $GITHUB_WORKSPACE -DCMAKE_CXX_COMPILER=${{ matrix.compiler }} -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DTESTS=ON -DOPENSSL=ON -DMBEDTLS=ON
Expand Down
Loading