Skip to content
Closed
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
31 changes: 16 additions & 15 deletions .github/workflows/linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@ on:
# branches: [ master ]

jobs:
Linux-GCC:
runs-on: ubuntu-20.04
Latest:
runs-on: ubuntu-24.04
strategy:
matrix:
cxx: ['7', '13']
cxx: ['g++-14', 'clang++-18']
env:
CMAKE_OPTIONS: -DDEV_MODE=ON -DBUILD_TESTING=ON
CMAKE_MATROSKA_OPTIONS: -DBUILD_EXAMPLES=ON
CXX: ${{matrix.cxx}}
steps:
- uses: egor-tensin/setup-gcc@v1
with:
version: ${{matrix.cxx}}
- name: list compilers
run: dpkg --list | grep compiler

- name: Get pushed code
uses: actions/checkout@v4
Expand Down Expand Up @@ -47,22 +47,23 @@ jobs:
- name: Test installation
run: cmake --install _build --prefix ${GITHUB_WORKSPACE}/_built

Linux-Clang:
Oldest:
runs-on: ubuntu-20.04
strategy:
matrix:
cxx: ['7', '18']
cxx: ['g++-7', 'clang++-7']
env:
CMAKE_OPTIONS: -DDEV_MODE=ON -DBUILD_TESTING=ON -DCMAKE_CXX_FLAGS="-stdlib=libc++"
CMAKE_OPTIONS: -DDEV_MODE=ON -DBUILD_TESTING=ON
CMAKE_MATROSKA_OPTIONS: -DBUILD_EXAMPLES=ON
CXX: ${{matrix.cxx}}
steps:
- uses: egor-tensin/setup-clang@v1
with:
version: ${{matrix.cxx}}

- name: Install libc++
- name: install gcc-7
run: |
sudo apt install -y libc++abi-${{matrix.cxx}}-dev libc++-${{matrix.cxx}}-dev
sudo add-apt-repository --yes --update ppa:ubuntu-toolchain-r/test
sudo DEBIAN_FRONTEND=noninteractive apt-get install -yq --no-install-recommends ${{matrix.cxx}}

- name: list compilers
run: dpkg --list | grep compiler

- name: Get pushed code
uses: actions/checkout@v4
Expand Down
46 changes: 0 additions & 46 deletions .github/workflows/macos.yaml

This file was deleted.

50 changes: 0 additions & 50 deletions .github/workflows/uwp.yaml

This file was deleted.

51 changes: 0 additions & 51 deletions .github/workflows/windows.yaml

This file was deleted.

1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ if(DEV_MODE)
set(CMAKE_CXX_EXTENSIONS OFF)
add_cxx_flag_if_supported(-Wno-error=unused-command-line-argument
-Wall -Wextra -Wpedantic -Wfatal-errors -fstack-protector-strong
-Wno-self-assign
-Wcast-align
-W4)
endif()
Expand Down
Loading