Skip to content

Commit

Permalink
ubuntu-24.04 is also hard to use.... annoying github action breaking
Browse files Browse the repository at this point in the history
updates
  • Loading branch information
hit9 committed May 19, 2024
1 parent ec554f2 commit 032e6b8
Showing 1 changed file with 16 additions and 9 deletions.
25 changes: 16 additions & 9 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ on:
branches: [ "master" ]

jobs:
prepare-gcc-13:
runs-on: ubuntu-latest
steps:
- run: >
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
sudo apt-get update -y
sudo apt-get install gcc-13
build:
runs-on: ${{ matrix.os }}

Expand All @@ -15,27 +23,26 @@ jobs:

matrix:
build_type: [Debug, Release]
os: [macos-latest, ubuntu-24.04]
cpp_compiler: [g++-14, clang++]
os: [macos-latest, ubuntu-latest]
cpp_compiler: [g++-13, clang++]
include:
- os: ubuntu-24.04
c_compiler: gcc-14
cpp_compiler: g++-14
- os: ubuntu-latest
c_compiler: gcc-13
cpp_compiler: g++-13
- os: macos-latest
c_compiler: clang
cpp_compiler: clang++
exclude:
- os: macos-latest
cpp_compiler: g++-14
- os: ubuntu-24.04
cpp_compiler: g++-13
- os: ubuntu-latest
cpp_compiler: clang++

steps:
- uses: actions/checkout@v3

- name: Install Conan
run: apt install python3-conan
# run: pip install conan
run: pip install conan

- name: Configure Conan
run: conan profile detect
Expand Down

0 comments on commit 032e6b8

Please sign in to comment.