-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ccbdd7d
commit 2f403a7
Showing
1 changed file
with
7 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -164,26 +164,24 @@ jobs: | |
clean: false | ||
path: 'itksnap' | ||
|
||
- name: Setup tmate session | ||
uses: mxschmitt/action-tmate@v3 | ||
if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }} | ||
|
||
# Build ITK-SNAP | ||
- name: Build ITK-SNAP | ||
# Configure ITK-SNAP | ||
- name: Configure ITK-SNAP | ||
uses: threeal/[email protected] | ||
continue-on-error: true | ||
with: | ||
source-dir: ${{github.workspace}}/itksnap | ||
build-dir: ${{github.workspace}}/itksnap/build | ||
generator: Ninja | ||
build-args: | | ||
-t | ||
package | ||
run-build: false | ||
options: | | ||
ITK_DIR=${{github.workspace}}/itk/build | ||
VTK_DIR=${{github.workspace}}/vtk/install/lib/cmake/vtk-9.3 | ||
CMAKE_BUILD_TYPE=Release | ||
- name: Setup tmate session | ||
uses: mxschmitt/action-tmate@v3 | ||
if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }} | ||
|
||
# Cache the ITK-SNAP build | ||
- name: Cache ITK-SNAP build directory | ||
uses: actions/cache/save@v4 | ||
|