Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump cleaver version #43

Merged
merged 2 commits into from
May 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/build-test-package.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
name: Build, test, package

on: [push,pull_request]
on:
push:
branches:
- master
tags:
- '*'
pull_request:
branches:
- master

jobs:
cxx-build-workflow:
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/clang-format-linter.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
name: clang-format linter

on: [push,pull_request]
on:
push:
branches:
- master
tags:
- '*'
pull_request:
branches:
- master

jobs:
lint:
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/wasm.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
name: WebAssembly

on: [push,pull_request]
on:
push:
branches:
- master
tags:
- '*'
pull_request:
branches:
- master

jobs:
build-wasm:
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ endif()
set(_itk_build_shared ${BUILD_SHARED_LIBS})
set(BUILD_SHARED_LIBS OFF)
set(cleaver_GIT_REPOSITORY "https://github.com/SCIInstitute/Cleaver")
set(cleaver_GIT_TAG "bb1d7e0604171b52f4e2f3b64178860dde0e4a58")
set(cleaver_GIT_TAG "7b68a58b1c140fc56d3e39992a5c8dcdeb12c55e")
FetchContent_Declare(
cleaver_lib
GIT_REPOSITORY ${cleaver_GIT_REPOSITORY}
Expand Down