Skip to content

Commit

Permalink
CI improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
albin-johansson committed Oct 16, 2023
1 parent 66b54d4 commit c160634
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [ push ]

env:
VCPKG_ROOT: ${{github.workspace}}/vcpkg
VCPKG_TARGET_TRIPLET: arm64-osx-dynamic
VCPKG_TARGET_TRIPLET: x64-osx-dynamic
VCPKG_DEFAULT_BINARY_CACHE: ${{github.workspace}}/vcpkg/bincache
VCPKG_CACHE_EDITION: 1

Expand Down Expand Up @@ -61,5 +61,5 @@ jobs:
run: ninja -C build

- name: Run core tests
working-directory: ./build/debug/test
working-directory: ./build/debug
run: ./tactile-core-test
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,5 @@ jobs:
run: ninja -C build

- name: Run core tests
working-directory: ./build/debug/test
working-directory: ./build/debug
run: ./tactile-core-test
3 changes: 1 addition & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,5 @@ jobs:
run: ninja -C build

- name: Run core tests
working-directory: ./build/debug/test
shell: cmd
working-directory: ./build/debug
run: tactile-core-test.exe
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ class CompressionErrorDomain final : public IErrorDomain {

constexpr CompressionErrorDomain() noexcept = default;

constexpr ~CompressionErrorDomain() noexcept override = default;
constexpr ~CompressionErrorDomain() noexcept override // NOLINT: GCC workaround
{}

TACTILE_DEFAULT_COPY(CompressionErrorDomain);
TACTILE_DEFAULT_MOVE(CompressionErrorDomain);
Expand Down
3 changes: 2 additions & 1 deletion modules/core/inc/tactile/core/io/save/save_format_error.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ class SaveFormatErrorDomain final : public IErrorDomain {

constexpr SaveFormatErrorDomain() noexcept = default;

constexpr ~SaveFormatErrorDomain() noexcept override = default;
constexpr ~SaveFormatErrorDomain() noexcept override // NOLINT: GCC workaround
{}

TACTILE_DEFAULT_COPY(SaveFormatErrorDomain);
TACTILE_DEFAULT_MOVE(SaveFormatErrorDomain);
Expand Down

0 comments on commit c160634

Please sign in to comment.