Skip to content

Commit

Permalink
Merge pull request #186 from tcbrindle/pr/fix-ci-yet-again
Browse files Browse the repository at this point in the history
Update CI again
  • Loading branch information
tcbrindle committed May 17, 2024
2 parents faf2e0f + b055ffa commit 7e98c0a
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
brew install gcc@13 ninja binutils
brew link --force binutils
- compiler: Clang-17
cxx: clang++
cxx: $(brew --prefix llvm@17)/bin/clang++
install: |
brew install llvm@17 ninja binutils
brew link --force binutils
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,22 @@ jobs:

exclude:
- compiler: GCC-13
test_with: Module
# test_with: Module
- compiler: LLVM-Clang-16
test_with: Module

include:
- compiler: GCC-13
cxx: g++-13
install: |
brew update
brew install gcc@13 ninja
# - compiler: GCC-13
# cxx: g++-13
# install: |
# brew update
# brew install gcc@13 ninja
- compiler: LLVM-Clang-16
cxx: /usr/local/opt/llvm@16/bin/clang++
cxx: $(brew --prefix llvm@16)/bin/clang++
install: |
brew install llvm@16 ninja
- compiler: LLVM-Clang-17
cxx: /usr/local/opt/llvm@17/bin/clang++
cxx: $(brew --prefix llvm@17)/bin/clang++
install: |
brew install llvm@17 ninja
Expand Down
1 change: 1 addition & 0 deletions test/test_adjacent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#include "catch.hpp"

#include <array>
#include <tuple>

#include "test_utils.hpp"

Expand Down
2 changes: 1 addition & 1 deletion test/test_cartesian_power.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include "catch.hpp"

#include <array>

#include <tuple>

#include "test_utils.hpp"

Expand Down
1 change: 1 addition & 0 deletions test/test_cartesian_product.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
#include <array>
#include <iostream>
#include <string_view>
#include <tuple>

#include "test_utils.hpp"

Expand Down
1 change: 1 addition & 0 deletions test/test_optional.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

#include "catch.hpp"

#include <optional> // std::nullopt
#include <utility> // std::as_const

#include "test_utils.hpp"
Expand Down
1 change: 1 addition & 0 deletions test/test_simple_sequence.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#include "catch.hpp"

#include <array>
#include <optional>

#include "test_utils.hpp"

Expand Down
1 change: 1 addition & 0 deletions test/test_take.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

#include <array>
#include <list>
#include <optional>

#include "test_utils.hpp"

Expand Down
1 change: 1 addition & 0 deletions test/test_zip_algorithms.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include <algorithm>
#include <array>
#include <string_view>
#include <tuple>

#include "test_utils.hpp"

Expand Down

0 comments on commit 7e98c0a

Please sign in to comment.