Skip to content

Commit

Permalink
Fix pipeline failures
Browse files Browse the repository at this point in the history
  • Loading branch information
John McFarlane committed Oct 25, 2023
1 parent 781d03f commit 8b58106
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 20 deletions.
18 changes: 0 additions & 18 deletions .github/workflows/test.yml
Expand Up @@ -42,7 +42,6 @@ jobs:
- name: Cache Report
run: |
ccache -s
conan search
- name: Initialise Conan
run: |
Expand All @@ -64,10 +63,6 @@ jobs:
- name: Test library
run: conan build --test $GITHUB_WORKSPACE

- name: Cache Report
run: |
conan search
# Build and test many combinations on Linux/OS X using Conan
conan:
strategy:
Expand Down Expand Up @@ -189,7 +184,6 @@ jobs:
- name: Cache Report
run: |
ccache -s
conan search
- name: Initialise Conan
run: |
Expand Down Expand Up @@ -219,10 +213,6 @@ jobs:
./test/benchmark/test-benchmark --benchmark_format=csv | tee result.csv \
"${GITHUB_WORKSPACE}"/test/benchmark/report.py result.csv
- name: Cache Report
run: |
conan search
# Build and test on Windows using Conan
windows:
strategy:
Expand Down Expand Up @@ -270,10 +260,6 @@ jobs:
run: |
pip.exe install conan;
- name: Cache Report
run: |
conan search
- name: Create build directory
run: mkdir ${{runner.workspace}}\build

Expand All @@ -295,10 +281,6 @@ jobs:
working-directory: ${{runner.workspace}}/build
run: test\benchmark\${{matrix.build_type}}\test-benchmark.exe

- name: Cache Report
run: |
conan search
# Test documentation generation
doxygen:
runs-on: ubuntu-18.04
Expand Down
2 changes: 1 addition & 1 deletion test/unit/presentations/cppcon2017.cpp
Expand Up @@ -20,7 +20,7 @@ namespace filesystem = std::filesystem;
template<typename Rep = int, int Exponent = 0, int Radix = 2>
using fixed_point = cnl::scaled_integer<Rep, cnl::power<Exponent, Radix>>;

#if (defined(_MSC_VER) && _MSC_VER < 1932) || (defined(__GNUC__) && __cplusplus < 201703L) // wg21.link/LWG3657
#if (defined(_MSC_VER) && _MSC_VER < 1932) || (defined(__GNUC__) && __cplusplus < 201703L) // wg21.link/LWG3657
template<>
struct std::hash<filesystem::path> {
auto operator()(filesystem::path const& p) const
Expand Down
2 changes: 1 addition & 1 deletion test/unit/presentations/cppdub2018.cpp
Expand Up @@ -22,7 +22,7 @@ using cnl::make_scaled_integer;
using cnl::power;
using cnl::scaled_integer;

#if (defined(_MSC_VER) && _MSC_VER < 1932) || (defined(__GNUC__) && __cplusplus < 201703L) // wg21.link/LWG3657
#if (defined(_MSC_VER) && _MSC_VER < 1932) || (defined(__GNUC__) && __cplusplus < 201703L) // wg21.link/LWG3657
template<>
struct std::hash<filesystem::path> {
auto operator()(filesystem::path const& p) const
Expand Down

0 comments on commit 8b58106

Please sign in to comment.