diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2057b9b..fdbb1d4 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -10,7 +10,7 @@ jobs: build_and_test: strategy: matrix: - os: [macos-13, macos-12, ubuntu-latest] + os: [macos-13, macos-12, macos-14, ubuntu-latest] runs-on: ${{ matrix.os }} steps: - name: Checkout diff --git a/Makefile b/Makefile index 6261f2e..4145120 100644 --- a/Makefile +++ b/Makefile @@ -4,8 +4,7 @@ SRCDIR := ./src INCLUDEDIR := ./src TESTSDIR := ./tests -CC := $(shell which g++-13 || \ - which g++ || which clang) +CC := $(shell which g++ || which clang) CFLAGS := -std=c++17 -pedantic -Wall -Wextra -I $(INCLUDEDIR) CDEBUG := -g CRELEASE := -O2 -DRELEASE_BUILD