Skip to content

Commit

Permalink
gha
Browse files Browse the repository at this point in the history
  • Loading branch information
ncullen93 committed Mar 31, 2024
1 parent 6da78c8 commit ccf3ae8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/ci-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ on:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:

env:
Expand All @@ -20,7 +18,7 @@ jobs:
test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v2.3.4
- uses: actions/setup-python@v5

- name: Install package
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ find_package(nanobind CONFIG REQUIRED)

message("My test's working directory: ${PROJECT_SOURCE_DIR}")
execute_process(COMMAND ls ${PROJECT_SOURCE_DIR})
execute_process(COMMAND sh ${PROJECT_SOURCE_DIR}/scripts/configure_ITK.sh)
execute_process(COMMAND sh ${PROJECT_SOURCE_DIR}/scripts/configure_ANTs.sh)
execute_process(COMMAND bash ${PROJECT_SOURCE_DIR}/scripts/configure_ITK.sh)
execute_process(COMMAND bash ${PROJECT_SOURCE_DIR}/scripts/configure_ANTs.sh)

# ITK
set(ITK_DIR "./itkbuild")
Expand Down
1 change: 1 addition & 0 deletions scripts/configure_ITK.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash

CXX_STD=CXX11
JTHREADS=2
if [[ "`uname`" == "Darwin" ]] ; then
Expand Down

0 comments on commit ccf3ae8

Please sign in to comment.